aboutsummaryrefslogtreecommitdiff
path: root/runtime/themes/rose_pine.toml
diff options
context:
space:
mode:
authorJoel2022-05-22 05:10:01 +0000
committerBlaž Hrastnik2022-05-22 09:36:51 +0000
commit0018545263b6a8416b0b8b943be236ea0abb7a67 (patch)
tree7aaf9da09f9da25d613942f5b6ad596d3905062f /runtime/themes/rose_pine.toml
parent0c05447d49103e96fc21910d336bdc75ab96338d (diff)
fix: remove duplicated `ui.help` in themes
the bottom value is used, so i've removed the top `ui.help` values from all themes also, the values are not merged, so: ```toml "ui.help" = { modifiers = ["reversed"] } "ui.help" = { fg = "white", bg = "black" } ``` is equal to: ```toml "ui.help" = { fg = "white", bg = "black" } ```
Diffstat (limited to 'runtime/themes/rose_pine.toml')
-rw-r--r--runtime/themes/rose_pine.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/themes/rose_pine.toml b/runtime/themes/rose_pine.toml
index d005ac8a..f0575880 100644
--- a/runtime/themes/rose_pine.toml
+++ b/runtime/themes/rose_pine.toml
@@ -10,7 +10,6 @@
"comment" = "subtle"
"ui.statusline" = {fg = "foam", bg = "surface" }
"ui.statusline.inactive" = { fg = "iris", bg = "surface" }
-"ui.help" = { fg = "foam", bg = "surface" }
"ui.cursor" = { fg = "rose", modifiers = ["reversed"] }
"ui.text" = { fg = "text" }
"ui.text.focus" = { fg = "foam", modifiers = ["bold"]}