From 3fb0562e7b6eab72bba5b445703d392edd8eff3b Mon Sep 17 00:00:00 2001 From: Chirikumbrah <78883260+Chirikumbrah@users.noreply.github.com> Date: Mon, 8 May 2023 20:12:15 +0300 Subject: [PATCH] Update dracula menu colors (#6987) --- runtime/themes/dracula.toml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/runtime/themes/dracula.toml b/runtime/themes/dracula.toml index eb46d6d8..1ec5b4fe 100644 --- a/runtime/themes/dracula.toml +++ b/runtime/themes/dracula.toml @@ -73,11 +73,11 @@ "ui.highlight.frameline" = { fg = "background", bg = "red" } "ui.linenr" = { fg = "comment" } "ui.linenr.selected" = { fg = "foreground" } -"ui.menu" = { fg = "background", bg = "purple" } -"ui.menu.selected" = { fg = "background", bg = "green", modifiers = ["dim"] } -"ui.menu.scroll" = { fg = "background", bg = "purple" } +"ui.menu" = { fg = "foreground", bg = "current_line" } +"ui.menu.selected" = { fg = "current_line", bg = "purple", modifiers = ["dim"] } +"ui.menu.scroll" = { fg = "foreground", bg = "current_line" } "ui.popup" = { fg = "foreground", bg = "black" } -"ui.selection.primary" = { bg = "selection_primary" } +"ui.selection.primary" = { bg = "current_line" } "ui.selection" = { bg = "selection" } "ui.statusline" = { fg = "foreground", bg = "darker" } "ui.statusline.inactive" = { fg = "comment", bg = "darker" } @@ -87,8 +87,8 @@ "ui.text" = { fg = "foreground" } "ui.text.focus" = { fg = "cyan" } "ui.window" = { fg = "foreground" } -"ui.virtual.whitespace" = { fg = "subtle" } -"ui.virtual.wrap" = { fg = "subtle" } +"ui.virtual.whitespace" = { fg = "current_line" } +"ui.virtual.wrap" = { fg = "current_line" } "ui.virtual.ruler" = { bg = "black" } "ui.virtual.inlay-hint" = { fg = "cyan" } "ui.virtual.inlay-hint.parameter" = { fg = "cyan", modifiers = ["italic", "dim"] } @@ -122,13 +122,12 @@ darker = "#222430" black = "#191A21" grey = "#666771" comment = "#6272A4" -selection_primary = "#44475a" +current_line = "#44475a" selection = "#363848" -subtle = "#424450" red = "#ff5555" orange = "#ffb86c" yellow = "#f1fa8c" green = "#50fa7b" purple = "#BD93F9" cyan = "#8be9fd" -pink = "#ff79c6" +pink = "#ff79c6"