Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ayu_evolve theme #5638

Merged
merged 3 commits into from
Feb 1, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions runtime/themes/ayu_evolve.toml
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"
gibbz00 marked this conversation as resolved.
Show resolved Hide resolved
"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"