diff options
author | Alexander Brevig | 2022-08-01 03:21:37 +0000 |
---|---|---|
committer | GitHub | 2022-08-01 03:21:37 +0000 |
commit | 07019c390545bad1b3710a99cf2398eb6c7b151a (patch) | |
tree | 80ca8ebd945342a4bc9febc17bb7c0fc6f7211df /runtime/themes | |
parent | 9f4802e1010f85b930695e3ac51360fd892f5b2b (diff) |
fix: gruvbox color modes (#3202)
* fix: gruvbox color modes
* increase contrast, and use blue and not purple
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/gruvbox.toml | 3 | ||||
-rw-r--r-- | runtime/themes/gruvbox_light.toml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/runtime/themes/gruvbox.toml b/runtime/themes/gruvbox.toml index 48fb14fa..00ec2a8c 100644 --- a/runtime/themes/gruvbox.toml +++ b/runtime/themes/gruvbox.toml @@ -42,6 +42,9 @@ "ui.linenr" = { fg = "bg4" } "ui.linenr.selected" = { fg = "yellow1" } "ui.statusline" = { fg = "fg1", bg = "bg2" } +"ui.statusline.normal" = { fg = "fg1", bg = "bg2" } +"ui.statusline.insert" = { fg = "fg1", bg = "blue0" } +"ui.statusline.select" = { fg = "fg1", bg = "orange0" } "ui.statusline.inactive" = { fg = "fg4", bg = "bg1" } "ui.popup" = { bg = "bg1" } "ui.window" = { bg = "bg1" } diff --git a/runtime/themes/gruvbox_light.toml b/runtime/themes/gruvbox_light.toml index 02a32dec..a4817b48 100644 --- a/runtime/themes/gruvbox_light.toml +++ b/runtime/themes/gruvbox_light.toml @@ -43,6 +43,9 @@ "ui.linenr" = { fg = "bg4" } "ui.linenr.selected" = { fg = "yellow1" } "ui.statusline" = { fg = "fg1", bg = "bg2" } +"ui.statusline.normal" = { fg = "fg1", bg = "bg2" } +"ui.statusline.insert" = { fg = "fg1", bg = "blue0" } +"ui.statusline.select" = { fg = "fg1", bg = "orange0" } "ui.statusline.inactive" = { fg = "fg4", bg = "bg1" } "ui.popup" = { bg = "bg1" } "ui.window" = { bg = "bg1" } |