From 36e20586d95f9004332b10d9b07ee3ff85355950 Mon Sep 17 00:00:00 2001 From: NNB Date: Wed, 8 Dec 2021 13:32:08 +0700 Subject: [PATCH] Add `ui.gutter` theming --- base16_theme.toml | 13 +++++++------ runtime/themes/base16_default_dark.toml | 13 +++++++------ runtime/themes/base16_default_light.toml | 13 +++++++------ runtime/themes/base16_terminal.toml | 13 +++++++------ 4 files changed, 28 insertions(+), 24 deletions(-) diff --git a/base16_theme.toml b/base16_theme.toml index dcc03a70146b..ac502c36b834 100644 --- a/base16_theme.toml +++ b/base16_theme.toml @@ -29,9 +29,10 @@ "namespace" = "magenta" "ui.help" = { fg = "white", bg = "black" } -"info" = { fg = "gray", bg = "black" } -"hint" = { fg = "gray", bg = "black" } -"debug" = { fg = "gray", bg = "black" } -"diagnostic" = { fg = "gray", bg = "black" } -"warning" = { fg = "yellow", bg = "black" } -"error" = { fg = "red", bg = "black" } +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "black" } +"info" = "gray" +"hint" = "gray" +"debug" = "gray" +"warning" = "yellow" +"error" = "red" diff --git a/runtime/themes/base16_default_dark.toml b/runtime/themes/base16_default_dark.toml index 2bf9d52a9360..697fd0bade07 100644 --- a/runtime/themes/base16_default_dark.toml +++ b/runtime/themes/base16_default_dark.toml @@ -33,12 +33,13 @@ "namespace" = "base0E" "ui.help" = { fg = "base06", bg = "base01" } -"info" = { fg = "base03", bg = "base01" } -"hint" = { fg = "base03", bg = "base01" } -"debug" = { fg = "base03", bg = "base01" } -"diagnostic" = { fg = "base03", bg = "base01" } -"warning" = { fg = "base09", bg = "base01" } -"error" = { fg = "base08", bg = "base01" } +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "base01" } +"info" = "base03" +"hint" = "base03" +"debug" = "base03" +"warning" = "base09" +"error" = "base08" [palette] base00 = "#181818" # Default Background diff --git a/runtime/themes/base16_default_light.toml b/runtime/themes/base16_default_light.toml index 918c872c913c..a656769b59cc 100644 --- a/runtime/themes/base16_default_light.toml +++ b/runtime/themes/base16_default_light.toml @@ -33,12 +33,13 @@ "namespace" = "base0E" "ui.help" = { fg = "base06", bg = "base01" } -"info" = { fg = "base03", bg = "base01" } -"hint" = { fg = "base03", bg = "base01" } -"debug" = { fg = "base03", bg = "base01" } -"diagnostic" = { fg = "base03", bg = "base01" } -"warning" = { fg = "base09", bg = "base01" } -"error" = { fg = "base08", bg = "base01" } +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "base01" } +"info" = "base03" +"hint" = "base03" +"debug" = "base03" +"warning" = "base09" +"error" = "base08" [palette] base00 = "#f8f8f8" # Default Background diff --git a/runtime/themes/base16_terminal.toml b/runtime/themes/base16_terminal.toml index d6fb5d262129..be1ad7081207 100644 --- a/runtime/themes/base16_terminal.toml +++ b/runtime/themes/base16_terminal.toml @@ -30,9 +30,10 @@ "namespace" = "light-magenta" "ui.help" = { fg = "white", bg = "black" } -"info" = { fg = "light-gray", bg = "black" } -"hint" = { fg = "light-gray", bg = "black" } -"debug" = { fg = "light-gray", bg = "black" } -"diagnostic" = { fg = "light-gray", bg = "black" } -"warning" = { fg = "yellow", bg = "black" } -"error" = { fg = "light-red", bg = "black" } +"diagnostic" = { modifiers = ["underlined"] } +"ui.gutter" = { bg = "black" } +"info" = "gray" +"hint" = "gray" +"debug" = "gray" +"warning" = "yellow" +"error" = "light-red"