https://github.com/atelierarith/plutoeditorcolorthemes.jl
Customize your Pluto Notebook with your preferred theme.
https://github.com/atelierarith/plutoeditorcolorthemes.jl
julia julialang pluto-notebooks
Last synced: 4 months ago
JSON representation
Customize your Pluto Notebook with your preferred theme.
- Host: GitHub
- URL: https://github.com/atelierarith/plutoeditorcolorthemes.jl
- Owner: AtelierArith
- License: mit
- Created: 2024-10-01T04:59:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-16T04:26:31.000Z (over 1 year ago)
- Last Synced: 2026-01-26T13:18:26.851Z (5 months ago)
- Topics: julia, julialang, pluto-notebooks
- Language: Julia
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [PlutoEditorColorThemes.jl](https://github.com/AtelierArith/PlutoEditorColorThemes.jl)
Customize your Pluto Notebook with your preferred theme.

## Description
This Julia package [PlutoEditorColorThemes.jl](https://github.com/AtelierArith/PlutoEditorColorThemes.jl) provides methods for overriding the default color theme of Pluto Notebook.
## Requirements
- Julia v1.10
- Pluto.jl
```julia
julia> import Pluto
julia> pkgversion(Pluto)
v"0.19.46"
```
## Getting started
Start Julia REPL and run the following command:
```julia
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)
1. Store it under the `frontend/styles` directory.
1. Run the following function on your Pluto Notebook:
```julia
PlutoEditorColorThemes.setcolortheme!("custom.css")
```