Skip to content

Commit

Permalink
Add ui.gutter theming
Browse files Browse the repository at this point in the history
  • Loading branch information
NNBnh authored and archseer committed Dec 13, 2021
1 parent cce34fe commit c7ace15
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
6 changes: 4 additions & 2 deletions base16_theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
"namespace" = "magenta"
"ui.help" = { fg = "white", bg = "black" }

"info" = "gray"
"diagnostic" = { modifiers = ["underlined"] }
"ui.gutter" = { bg = "black" }
"info" = "blue"
"hint" = "gray"
"debug" = "gray"
"diagnostic" = "gray"
"warning" = "yellow"
"error" = "red"
6 changes: 4 additions & 2 deletions runtime/themes/base16_default_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
6 changes: 4 additions & 2 deletions runtime/themes/base16_default_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
10 changes: 6 additions & 4 deletions runtime/themes/base16_terminal.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit c7ace15

Please sign in to comment.