Changing default header and text fonts in Pluto #1060
Answered
by
fonsp
rpherman
asked this question in
Questions about using Pluto
-
I did not see where I could change the default font in starting a Pluto notebook, or in an existing notebook. |
Beta Was this translation helpful? Give feedback.
Answered by
fonsp
Apr 6, 2021
Replies: 1 comment 1 reply
-
You can add a cell like this: html"""
<style>
pluto-output {
font-family: monospace;
color: green;
}
pluto-output h1 {
font-family: "Comis Sans MS", cursive;
color: red;
}
</style>
""" See all the default styles here: Lines 81 to 380 in bac224b |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
fonsp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add a cell like this:
See all the default styles here:
Pluto.jl/frontend/editor.css
Lines 81 to 380 in bac224b