Skip to content

Commit

Permalink
Add ui.gutter theming
Browse files Browse the repository at this point in the history
  • Loading branch information
NNBnh committed Dec 8, 2021
1 parent 7422abf commit 36e2058
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 24 deletions.
13 changes: 7 additions & 6 deletions base16_theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
13 changes: 7 additions & 6 deletions runtime/themes/base16_default_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 7 additions & 6 deletions runtime/themes/base16_default_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 7 additions & 6 deletions runtime/themes/base16_terminal.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 36e2058

Please sign in to comment.