Skip to content

Commit

Permalink
Add jump-label style for dark high contrast (#10102)
Browse files Browse the repository at this point in the history
  • Loading branch information
GreasySlug committed Apr 6, 2024
1 parent 3f2de21 commit 97afd67
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions runtime/themes/dark_high_contrast.toml
Expand Up @@ -3,11 +3,14 @@
# Interface
"ui.background" = { bg = "black" }
"ui.window" = { fg = "aqua" }
"special" = "orange" # file picker fuzzy match
"special" = "orange" # file picker fuzzy match
"ui.background.separator" = { fg = "white" }
"ui.text" = "white"
"ui.text.focus" = { modifiers = ["reversed"] } # file picker selected

"ui.virtual.jump-label" = { fg = "deep_red", modifiers = [
"bold",
], underline = { color = "deep_red", style = "line" } }
"ui.virtual" = "gray"
"ui.virtual.whitespace" = "gray"
"ui.virtual.ruler" = { fg = "white", bg = "gray" }
Expand Down Expand Up @@ -56,14 +59,14 @@
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
"info" = "white"
"info" = "white"
"hint" = "yellow"
"warning" = "orange"
"error" = "red"
"debug" = "red"

"diff.plus" = "green"
"diff.delta" ="blue"
"diff.delta" = "blue"
"diff.minus" = "pink"

# Syntax high light
Expand All @@ -87,7 +90,9 @@
"label" = "blue"

# Markup
"markup.heading" = { fg = "yellow", modifiers = ["bold"], underline = { color = "yellow", style = "double_line"} }
"markup.heading" = { fg = "yellow", modifiers = [
"bold",
], underline = { color = "yellow", style = "double_line" } }
"markup.list" = "pink"
"markup.bold" = { fg = "emerald_green", modifiers = ["bold"] }
"markup.italic" = { fg = "blue", modifiers = ["italic"] }
Expand All @@ -107,6 +112,7 @@ dark_blue = "#0d1a2d"
aqua = "#6fc3df"
purple = "#c586c0"
red = "#b65f5f"
deep_red = "#fd0004"
pink = "#ff5c8d"
orange = "#f38518"
brown = "#ce9178"
Expand Down

0 comments on commit 97afd67

Please sign in to comment.