Skip to content

Commit

Permalink
Update everforest themes
Browse files Browse the repository at this point in the history
* add background colors to diff gutters and lsp errors/warnings/etc
* stylize v2 picker columns
  • Loading branch information
0rphee committed Aug 10, 2024
1 parent 91e642c commit a9f14aa
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
17 changes: 9 additions & 8 deletions runtime/themes/everforest_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@
"markup.raw.inline" = "green"
"markup.raw.block" = "aqua"

"diff.plus" = "green"
"diff.delta" = "blue"
"diff.minus" = "red"
"diff.plus" = { bg ="bg_green", fg = "green"}
"diff.delta" = { bg ="bg_blue", fg = "blue"}
"diff.minus" = { bg ="bg_red", fg = "red"}

"ui.background" = { bg = "bg0" }
"ui.background.separator" = "bg_visual"
"ui.background.separator" = "grey0"
"ui.cursor" = { fg = "bg1", bg = "grey2" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
Expand All @@ -90,6 +90,7 @@
"bold",
] }
"ui.popup" = { fg = "grey2", bg = "bg2" }
"ui.picker.header" = { modifiers = ["bold", "underlined"] }
"ui.window" = { fg = "bg4", bg = "bg_dim" }
"ui.help" = { fg = "fg", bg = "bg2" }
"ui.text" = "fg"
Expand All @@ -107,10 +108,10 @@
"warning" = "yellow"
"error" = "red"

"diagnostic.hint" = { underline = { color = "green", style = "curl" } }
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
"diagnostic.hint" = { bg = "bg_green", underline = { color = "green", style = "curl" } }
"diagnostic.info" = { bg = "bg_blue", underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { bg = "bg_yellow", underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { bg = "bg_red", underline = { color = "red", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }

Expand Down
17 changes: 9 additions & 8 deletions runtime/themes/everforest_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@
"markup.raw.inline" = "green"
"markup.raw.block" = "aqua"

"diff.plus" = "green"
"diff.delta" = "blue"
"diff.minus" = "red"
"diff.plus" = { bg ="bg_green", fg = "green"}
"diff.delta" = { bg ="bg_blue", fg = "blue"}
"diff.minus" = { bg ="bg_red", fg = "red"}

"ui.background" = { bg = "bg0" }
"ui.background.separator" = "bg_visual"
"ui.background.separator" = "grey0"
"ui.cursor" = { fg = "bg1", bg = "grey2" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
Expand All @@ -89,6 +89,7 @@
"bold",
] }
"ui.popup" = { fg = "grey2", bg = "bg2" }
"ui.picker.header" = { modifiers = ["bold", "underlined"] }
"ui.window" = { fg = "bg4", bg = "bg_dim" }
"ui.help" = { fg = "fg", bg = "bg2" }
"ui.text" = "fg"
Expand All @@ -106,10 +107,10 @@
"warning" = "yellow"
"error" = "red"

"diagnostic.hint" = { underline = { color = "green", style = "curl" } }
"diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
"diagnostic.hint" = { bg = "bg_green", underline = { color = "green", style = "curl" } }
"diagnostic.info" = { bg = "bg_blue", underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { bg = "bg_yellow", underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { bg = "bg_red", underline = { color = "red", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }

Expand Down

0 comments on commit a9f14aa

Please sign in to comment.