diff options
author | Chirikumbrah | 2023-05-01 21:51:35 +0000 |
---|---|---|
committer | GitHub | 2023-05-01 21:51:35 +0000 |
commit | 2701781db795cbdda739b5c1153b09429d7ae789 (patch) | |
tree | 348d061f410e181973baa5b0ef614c1179740a8f | |
parent | 015623720cfda031d04bb3628b4a0ad506b3bccf (diff) |
Dracula theme: change variable and menu colors (#6855)
-rw-r--r-- | runtime/themes/dracula.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/themes/dracula.toml b/runtime/themes/dracula.toml index bfdd620d..eb46d6d8 100644 --- a/runtime/themes/dracula.toml +++ b/runtime/themes/dracula.toml @@ -51,8 +51,8 @@ "variable" = { fg = "foreground" } "variable.builtin" = { fg = "purple", modifiers = ["italic"] } "variable.parameter" = { fg = "orange", modifiers = ["italic"] } -"variable.other" = { fg = "cyan" } -"variable.other.member" = { fg = "purple" } +"variable.other" = { fg = "foreground" } +"variable.other.member" = { fg = "foreground" } "diff.plus" = { fg = "green" } @@ -73,8 +73,9 @@ "ui.highlight.frameline" = { fg = "background", bg = "red" } "ui.linenr" = { fg = "comment" } "ui.linenr.selected" = { fg = "foreground" } -"ui.menu" = { fg = "foreground", bg = "black" } -"ui.menu.selected" = { fg = "cyan", bg = "black" } +"ui.menu" = { fg = "background", bg = "purple" } +"ui.menu.selected" = { fg = "background", bg = "green", modifiers = ["dim"] } +"ui.menu.scroll" = { fg = "background", bg = "purple" } "ui.popup" = { fg = "foreground", bg = "black" } "ui.selection.primary" = { bg = "selection_primary" } "ui.selection" = { bg = "selection" } |