|
| 1 | +# https://rosepinetheme.com |
| 2 | +const rose_pine_palette = [ |
| 3 | + colorant"#524f67", # Highlight High |
| 4 | + colorant"#31748f", # pine |
| 5 | + colorant"#9ccfd8", # foam |
| 6 | + colorant"#ebbcba", # rose |
| 7 | + colorant"#f6c177", # gold |
| 8 | + colorant"#eb6f92", # love |
| 9 | + colorant"#c4a7e7", # Iris |
| 10 | +] |
| 11 | + |
| 12 | +const rose_pine_bg = colorant"#191724" |
| 13 | + |
| 14 | +const _rose_pine = PlotTheme(Dict([ |
| 15 | + :bg => rose_pine_bg, |
| 16 | + :bginside => colorant"#1f1d2e", |
| 17 | + :fg => colorant"#e0def4", |
| 18 | + :fgtext => colorant"#e0def4", |
| 19 | + :fgguide => colorant"#e0def4", |
| 20 | + :fglegend => colorant"#e0def4", |
| 21 | + :palette => expand_palette(rose_pine_bg, rose_pine_palette), |
| 22 | + :colorgradient => cgrad(rose_pine_palette)]) |
| 23 | +) |
| 24 | + |
| 25 | +const rose_pine_dawn_palette = [ |
| 26 | + colorant"#907aa9", # Iris |
| 27 | + colorant"#286983", # pine |
| 28 | + colorant"#56949f", # foam |
| 29 | + colorant"#cecacd", # Highlight High |
| 30 | + colorant"#ea9d34", # gold |
| 31 | + colorant"#d7827e", # rose |
| 32 | + colorant"#b4637a", # love |
| 33 | +] |
| 34 | + |
| 35 | +const rose_pine_dawn_bg = colorant"#faf4ed" |
| 36 | + |
| 37 | +const _rose_pine_dawn = PlotTheme(Dict([ |
| 38 | + :bg => rose_pine_dawn_bg, |
| 39 | + :bginside => colorant"#fffaf3", |
| 40 | + :fg => colorant"#575279", |
| 41 | + :fgtext => colorant"#575279", |
| 42 | + :fgguide => colorant"#575279", |
| 43 | + :fglegend => colorant"#575279", |
| 44 | + :palette => expand_palette(rose_pine_dawn_bg, rose_pine_dawn_palette), |
| 45 | + :colorgradient => cgrad(rose_pine_dawn_palette)]) |
| 46 | +) |
0 commit comments