Add jump-label style for dark high contrast (#10102)

pull/10175/head
Slug 3 months ago committed by GitHub
parent 3f2de21342
commit 97afd67fca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3,11 +3,14 @@
# Interface # Interface
"ui.background" = { bg = "black" } "ui.background" = { bg = "black" }
"ui.window" = { fg = "aqua" } "ui.window" = { fg = "aqua" }
"special" = "orange" # file picker fuzzy match "special" = "orange" # file picker fuzzy match
"ui.background.separator" = { fg = "white" } "ui.background.separator" = { fg = "white" }
"ui.text" = "white" "ui.text" = "white"
"ui.text.focus" = { modifiers = ["reversed"] } # file picker selected "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" = "gray"
"ui.virtual.whitespace" = "gray" "ui.virtual.whitespace" = "gray"
"ui.virtual.ruler" = { fg = "white", bg = "gray" } "ui.virtual.ruler" = { fg = "white", bg = "gray" }
@ -56,14 +59,14 @@
"diagnostic.error" = { underline = { color = "red", style = "curl" } } "diagnostic.error" = { underline = { color = "red", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] } "diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] } "diagnostic.deprecated" = { modifiers = ["crossed_out"] }
"info" = "white" "info" = "white"
"hint" = "yellow" "hint" = "yellow"
"warning" = "orange" "warning" = "orange"
"error" = "red" "error" = "red"
"debug" = "red" "debug" = "red"
"diff.plus" = "green" "diff.plus" = "green"
"diff.delta" ="blue" "diff.delta" = "blue"
"diff.minus" = "pink" "diff.minus" = "pink"
# Syntax high light # Syntax high light
@ -87,7 +90,9 @@
"label" = "blue" "label" = "blue"
# Markup # 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.list" = "pink"
"markup.bold" = { fg = "emerald_green", modifiers = ["bold"] } "markup.bold" = { fg = "emerald_green", modifiers = ["bold"] }
"markup.italic" = { fg = "blue", modifiers = ["italic"] } "markup.italic" = { fg = "blue", modifiers = ["italic"] }
@ -107,6 +112,7 @@ dark_blue = "#0d1a2d"
aqua = "#6fc3df" aqua = "#6fc3df"
purple = "#c586c0" purple = "#c586c0"
red = "#b65f5f" red = "#b65f5f"
deep_red = "#fd0004"
pink = "#ff5c8d" pink = "#ff5c8d"
orange = "#f38518" orange = "#f38518"
brown = "#ce9178" brown = "#ce9178"

Loading…
Cancel
Save