-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added "rose_pine" and "rose_pine_dawn" (#72)
* rose-pine * Update README.md with images * added it to the readme list
- Loading branch information
Showing
3 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# https://rosepinetheme.com | ||
const rose_pine_palette = [ | ||
colorant"#524f67", # Highlight High | ||
colorant"#31748f", # pine | ||
colorant"#9ccfd8", # foam | ||
colorant"#ebbcba", # rose | ||
colorant"#f6c177", # gold | ||
colorant"#eb6f92", # love | ||
colorant"#c4a7e7", # Iris | ||
] | ||
|
||
const rose_pine_bg = colorant"#191724" | ||
|
||
const _rose_pine = PlotTheme(Dict([ | ||
:bg => rose_pine_bg, | ||
:bginside => colorant"#1f1d2e", | ||
:fg => colorant"#e0def4", | ||
:fgtext => colorant"#e0def4", | ||
:fgguide => colorant"#e0def4", | ||
:fglegend => colorant"#e0def4", | ||
:palette => expand_palette(rose_pine_bg, rose_pine_palette), | ||
:colorgradient => cgrad(rose_pine_palette)]) | ||
) | ||
|
||
const rose_pine_dawn_palette = [ | ||
colorant"#907aa9", # Iris | ||
colorant"#286983", # pine | ||
colorant"#56949f", # foam | ||
colorant"#cecacd", # Highlight High | ||
colorant"#ea9d34", # gold | ||
colorant"#d7827e", # rose | ||
colorant"#b4637a", # love | ||
] | ||
|
||
const rose_pine_dawn_bg = colorant"#faf4ed" | ||
|
||
const _rose_pine_dawn = PlotTheme(Dict([ | ||
:bg => rose_pine_dawn_bg, | ||
:bginside => colorant"#fffaf3", | ||
:fg => colorant"#575279", | ||
:fgtext => colorant"#575279", | ||
:fgguide => colorant"#575279", | ||
:fglegend => colorant"#575279", | ||
:palette => expand_palette(rose_pine_dawn_bg, rose_pine_dawn_palette), | ||
:colorgradient => cgrad(rose_pine_dawn_palette)]) | ||
) |