Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.15 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.15 KB

Customize your Pluto Notebook with your preferred theme.

image

Description

This Julia package PlutoEditorColorThemes.jl provides methods for overriding the default color theme of Pluto Notebook.

Requirements

  • Julia v1.10
  • Pluto.jl
julia> import Pluto
julia> pkgversion(Pluto)
v"0.19.46"

Getting started

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:

  1. Create your own custom styles file (cunstom.css for instance)
  2. Store it under the frontend/styles directory.
  3. Run the following function on your Pluto Notebook:
    PlutoEditorColorThemes.setcolortheme!("custom.css")