Skip to content

Commit

Permalink
Update dracula menu colors (helix-editor#6987)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chirikumbrah authored and Schuyler Mortimer committed Jul 10, 2024
1 parent 2dfda2b commit 53e01a6
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions runtime/themes/dracula.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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"] }
Expand Down Expand Up @@ -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"

0 comments on commit 53e01a6

Please sign in to comment.