diff options
author | Joel | 2022-05-22 05:10:01 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-05-22 09:36:51 +0000 |
commit | 0018545263b6a8416b0b8b943be236ea0abb7a67 (patch) | |
tree | 7aaf9da09f9da25d613942f5b6ad596d3905062f /runtime/themes/autumn.toml | |
parent | 0c05447d49103e96fc21910d336bdc75ab96338d (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/autumn.toml')
-rw-r--r-- | runtime/themes/autumn.toml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/themes/autumn.toml b/runtime/themes/autumn.toml index 032e773a..afcc1a11 100644 --- a/runtime/themes/autumn.toml +++ b/runtime/themes/autumn.toml @@ -17,7 +17,6 @@ "ui.selection" = { bg = "my_gray3" } "comment" = { fg = "my_gray4", modifiers = ["italic"] } "ui.statusline" = { fg = "my_gray5", bg = "my_gray2" } -"ui.help" = { fg = "my_gray5", bg = "my_gray2" } "ui.cursor" = { fg = "my_gray5", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "my_white", modifiers = ["reversed"] } "ui.text" = "my_white" |