diff options
author | Skyler Hawthorne | 2022-06-30 21:52:31 +0000 |
---|---|---|
committer | GitHub | 2022-06-30 21:52:31 +0000 |
commit | f2768da1f6312efe6f87f80a6541da5225c2fc7c (patch) | |
tree | 011ea53b04fc023f0197187881eca015f29fc4c6 /runtime | |
parent | d06800f1dd47315f5738c529d40d1e0952ee2115 (diff) |
add mode colors to solarized (#2926)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/solarized_dark.toml | 6 | ||||
-rw-r--r-- | runtime/themes/solarized_light.toml | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/runtime/themes/solarized_dark.toml b/runtime/themes/solarized_dark.toml index d8126f6e..002e99bc 100644 --- a/runtime/themes/solarized_dark.toml +++ b/runtime/themes/solarized_dark.toml @@ -48,6 +48,10 @@ # 状态栏 "ui.statusline" = { fg = "base03", bg = "base0" } +"ui.statusline.normal" = { bg = "blue" } +"ui.statusline.insert" = { bg = "green" } +"ui.statusline.select" = { bg = "yellow" } + # 非活动状态栏 "ui.statusline.inactive" = { fg = "base1", bg = "base01" } @@ -55,7 +59,7 @@ "ui.popup" = { bg = "base02" } # 影响 补全选中 cmd弹出信息选中 "ui.menu.selected" = { fg = "base02", bg = "base2"} -"ui.menu" = { fg = "base1" } +"ui.menu" = { fg = "base0", bg = "base02" } # ?? "ui.window" = { fg = "base3" } # 命令行 补全的帮助信息 diff --git a/runtime/themes/solarized_light.toml b/runtime/themes/solarized_light.toml index cd1028bd..fa58cc8c 100644 --- a/runtime/themes/solarized_light.toml +++ b/runtime/themes/solarized_light.toml @@ -52,6 +52,10 @@ # 状态栏 # status bar "ui.statusline" = { fg = "base03", bg = "base0" } +"ui.statusline.normal" = { bg = "blue" } +"ui.statusline.insert" = { bg = "green" } +"ui.statusline.select" = { bg = "yellow" } + # 非活动状态栏 # inactive status bar "ui.statusline.inactive" = { fg = "base1", bg = "base01" } |