diff options
author | Henrik Tjäder | 2023-03-05 02:21:31 +0000 |
---|---|---|
committer | GitHub | 2023-03-05 02:21:31 +0000 |
commit | cf153080d7712f9a03e5e2c30bbae10eade1dc74 (patch) | |
tree | 5cb41d072eefa7069ff5bdbd6da2906959b44068 /runtime | |
parent | a2e54167d8f9ad8764ba586488d3995aeb33a559 (diff) |
Theme: Papercolor: Add ui.highlight (#6162)
Using the picker with syntax highlighting the
fallback `ui.selection` makes a lot of text,
especially for the light variant, hard to read.
Instead, use a lighter background for highlights
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/papercolor-dark.toml | 1 | ||||
-rw-r--r-- | runtime/themes/papercolor-light.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/runtime/themes/papercolor-dark.toml b/runtime/themes/papercolor-dark.toml index 088658e9..eaaa36dc 100644 --- a/runtime/themes/papercolor-dark.toml +++ b/runtime/themes/papercolor-dark.toml @@ -7,6 +7,7 @@ "ui.text.focus" = { fg = "selection_background", modifiers = ["bold"]} "ui.selection" = {bg="selection_background", fg="selection_foreground"} "ui.cursorline" = {bg="cursorline_background"} +"ui.highlight" = {bg="cursorline_background"} "ui.statusline" = {bg="paper_bar_bg", fg="regular0"} "ui.statusline.select" = {bg="background", fg="bright7"} "ui.statusline.normal" = {bg="background", fg="bright3"} diff --git a/runtime/themes/papercolor-light.toml b/runtime/themes/papercolor-light.toml index c44c6709..63671e1b 100644 --- a/runtime/themes/papercolor-light.toml +++ b/runtime/themes/papercolor-light.toml @@ -6,6 +6,7 @@ "ui.text" = "foreground" "ui.text.focus" = { fg = "selection_background", modifiers = ["bold"]} "ui.selection" = {bg="selection_background", fg="selection_foreground"} +"ui.highlight" = {bg="cursorline_background"} "ui.cursorline" = {bg="cursorline_background"} "ui.statusline" = {bg="paper_bar_bg", fg="regular0"} "ui.statusline.select" = {bg="background", fg="bright7"} |