Customize your Pluto Notebook with your preferred theme.
This Julia package PlutoEditorColorThemes.jl provides methods for overriding the default color theme of Pluto Notebook.
- Julia v1.10
- Pluto.jl
julia> import Pluto
julia> pkgversion(Pluto)
v"0.19.46"
Start Julia REPL and run the following command:
julia> using Pluto; Pluto.run(notebook="examples/demo.jl")
Our API PlutoEditorColorThemes.setcolortheme!()
overriding the default color theme of Pluto Notebook using frontend/styles/monokai_dark.css
.
If you want to change the color theme, follow the instructions below:
- Create your own custom styles file (
cunstom.css
for instance) - Store it under the
frontend/styles
directory. - Run the following function on your Pluto Notebook:
PlutoEditorColorThemes.setcolortheme!("custom.css")