diff options
author | Gokul Soumya | 2021-06-14 10:11:05 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-14 15:06:53 +0000 |
commit | f33aaba53fee32fb0a6e496c472f4e08bb401237 (patch) | |
tree | 407063aae90be69feaaa3e410621f3a42fc9d9f2 /contrib | |
parent | 9cfa1633702a33b917b108eca5e3ca83484b8a6e (diff) |
Add ui.selection to theme.toml
Enables changing the color of the selection which was previously
hard coded.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/themes/bogster.toml | 1 | ||||
-rw-r--r-- | contrib/themes/ingrid.toml | 1 | ||||
-rw-r--r-- | contrib/themes/onedark.toml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/contrib/themes/bogster.toml b/contrib/themes/bogster.toml index 40fa7044..0fbafd23 100644 --- a/contrib/themes/bogster.toml +++ b/contrib/themes/bogster.toml @@ -38,6 +38,7 @@ "ui.text" = { fg = "#e5ded6" } "ui.text.focus" = { fg = "#e5ded6", modifiers= ["bold"] } +"ui.selection" = { bg = "#540099" } "ui.menu.selected" = { fg = "#e5ded6", bg = "#313f4e" } "warning" = "#dc7759" diff --git a/contrib/themes/ingrid.toml b/contrib/themes/ingrid.toml index 60377b45..0dd53164 100644 --- a/contrib/themes/ingrid.toml +++ b/contrib/themes/ingrid.toml @@ -38,6 +38,7 @@ "ui.text" = { fg = "#7B91B3" } "ui.text.focus" = { fg = "#250E07", modifiers= ["bold"] } +"ui.selection" = { bg = "#540099" } "ui.menu.selected" = { fg = "#D74E50", bg = "#F3EAE9" } "warning" = "#D4A520" diff --git a/contrib/themes/onedark.toml b/contrib/themes/onedark.toml index b10a0292..ccf6a2cc 100644 --- a/contrib/themes/onedark.toml +++ b/contrib/themes/onedark.toml @@ -35,6 +35,7 @@ "ui.linenr" = { fg = "#4B5263", modifiers = ['dim'] } "ui.popup" = { bg = "#3E4452" } "ui.statusline" = { fg = "#ABB2BF", bg = "#2C323C" } +"ui.selection" = { bg = "#3E4452" } "ui.text" = { fg = "#ABB2BF", bg = "#282C34" } "ui.text.focus" = { fg = "#ABB2BF", bg = "#2C323C", modifiers = ['bold'] } "ui.window" = { bg = "#3E4452" } |