mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-06 00:13:28 +02:00
fix(theme): correct goto_word and comments background in flatwhite.toml
(#14348)
This commit is contained in:
@@ -2,11 +2,10 @@
|
||||
# Adopted from https://github.com/biletskyy/flatwhite-syntax
|
||||
|
||||
"attribute" = { fg = "blue_text", bg = "blue_bg" }
|
||||
"comment" = { fg = "base3", modifiers = ["italic"] }
|
||||
"comment.line" = {}
|
||||
"comment.line.documentation" = { fg = "base2" }
|
||||
"comment.block" = {}
|
||||
"comment.block.documentation" = { fg = "base2" }
|
||||
"comment" = { fg = "base2", bg = "base6" }
|
||||
"comment.line" = { fg = "base2", bg = "base6" }
|
||||
"comment.block" = { fg = "base2", bg = "base6" }
|
||||
"comment.block.documentation" = { fg = "base2", bg = "base6" }
|
||||
"constant" = { fg = "blue_text", bg = "blue_bg" }
|
||||
"constructor" = { fg = "base1" }
|
||||
"function" = { fg = "base1", modifiers = ["bold"] }
|
||||
@@ -62,12 +61,10 @@
|
||||
"ui.virtual" = { fg = "base5", bg = "base6" }
|
||||
"ui.virtual.whitespace" = { fg = "base5" }
|
||||
"ui.virtual.ruler" = { bg = "base6" }
|
||||
# Invalid modifier: "normal". See 'https://github.com/helix-editor/helix/issues/5709'
|
||||
# "ui.virtual.inlay-hint" = { fg = "base4", modifiers = ["normal"] }
|
||||
# "ui.virtual.inlay-hint.parameter" = { fg = "base3", modifiers = ["normal"] }
|
||||
"ui.virtual.inlay-hint" = "base4"
|
||||
"ui.virtual.inlay-hint.parameter" = "base3"
|
||||
"ui.virtual.inlay-hint.type" = { fg = "base3", modifiers = ["italic"] }
|
||||
"ui.virtual.jump-label" = { bg = "orange_bg", modifiers = ["bold"] }
|
||||
|
||||
"ui.linenr" = { bg = "base6" }
|
||||
"ui.linenr.selected" = { bg = "base6", modifiers = ["reversed"] }
|
||||
|
Reference in New Issue
Block a user