-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ayu_evolve theme * ayu_evolve: fix typo + raw markdown highlight * Update runtime/themes/ayu_evolve.toml typo Co-authored-by: Michael Davis <[email protected]> --------- Co-authored-by: Michael Davis <[email protected]>
- Loading branch information
1 parent
0f562df
commit b225187
Showing
1 changed file
with
36 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
inherits = 'ayu_dark' | ||
|
||
"keyword.control" = "orange" | ||
"keyword.storage" = "yellow" | ||
"keyword.storage.modifier" = "magenta" | ||
"variable.other.member" = "gray" | ||
"variable" = "light_gray" | ||
"constructor" = "magenta" | ||
"type.builtin" = { fg = "blue", modifiers = ["italic"] } | ||
|
||
# Gutters and editing area | ||
"error" = "red" | ||
"diagnostic.error" = { underline = { color = "red", style = "curl" } } | ||
"warning" = "vibrant_orange" | ||
"diagnostic.warning" = { underline = { color = "vibrant_orange", style = "curl" } } | ||
"hint" = "vibrant_yellow" | ||
"diagnostic.hint" = { underline = { color = "vibrant_yellow", style = "curl" } } | ||
"info" = "white" | ||
"diagnostic.info" = { underline = { color = "white", style = "curl" } } | ||
|
||
"markup.raw.block" = { bg = "black" } | ||
"markup.raw.inline" = { bg = "black" } | ||
|
||
"ui.cursor" = { fg = "dark_gray", bg = "light_gray" } | ||
"ui.cursor.primary" = { fg = "dark_gray", bg = "orange" } | ||
"ui.cursor.primary.select" = { fg = "dark_gray", bg = "magenta" } | ||
"ui.cursor.primary.insert" = { fg = "dark_gray", bg = "green" } | ||
"ui.text.inactive" = "gray" | ||
|
||
[palette] | ||
background = '#020202' | ||
black = "#0D0D0D" | ||
light_gray = "#dedede" | ||
red = "#DD3E25" | ||
vibrant_yellow = "#CFCA0D" | ||
vibrant_orange = "#FF8732" |