diff options
author | NNB | 2021-12-07 16:33:54 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-13 15:48:45 +0000 |
commit | c7ace15fd4cf6794782aca0927ff4d43fffbd473 (patch) | |
tree | 1ca675b9352adf92feaae46a4a1dea6ca7943bd6 /runtime/themes | |
parent | cce34feb4e3f683db90b7bc37eead4c460e7904b (diff) |
Add `ui.gutter` theming
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/base16_default_dark.toml | 6 | ||||
-rw-r--r-- | runtime/themes/base16_default_light.toml | 6 | ||||
-rw-r--r-- | runtime/themes/base16_terminal.toml | 10 |
3 files changed, 14 insertions, 8 deletions
diff --git a/runtime/themes/base16_default_dark.toml b/runtime/themes/base16_default_dark.toml index 0b12bdbc..fd4b0fea 100644 --- a/runtime/themes/base16_default_dark.toml +++ b/runtime/themes/base16_default_dark.toml @@ -33,10 +33,12 @@ "namespace" = "base0E" "ui.help" = { fg = "base06", bg = "base01" } -"info" = "base03" +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "base01" } +"info" = "base0D" "hint" = "base03" "debug" = "base03" -"diagnostic" = "base03" +"warning" = "base09" "error" = "base08" [palette] diff --git a/runtime/themes/base16_default_light.toml b/runtime/themes/base16_default_light.toml index 144144d1..596990da 100644 --- a/runtime/themes/base16_default_light.toml +++ b/runtime/themes/base16_default_light.toml @@ -33,10 +33,12 @@ "namespace" = "base0E" "ui.help" = { fg = "base06", bg = "base01" } -"info" = "base03" +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "base01" } +"info" = "base0D" "hint" = "base03" "debug" = "base03" -"diagnostic" = "base03" +"warning" = "base09" "error" = "base08" [palette] diff --git a/runtime/themes/base16_terminal.toml b/runtime/themes/base16_terminal.toml index a76cfd7e..123ceaea 100644 --- a/runtime/themes/base16_terminal.toml +++ b/runtime/themes/base16_terminal.toml @@ -30,8 +30,10 @@ "namespace" = "light-magenta" "ui.help" = { fg = "white", bg = "black" } -"info" = "light-gray" -"hint" = "light-gray" -"debug" = "light-gray" -"diagnostic" = "light-gray" +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "black" } +"info" = "light-blue" +"hint" = "gray" +"debug" = "gray" +"warning" = "yellow" "error" = "light-red" |