mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-11-24 16:35:39 +03:00
add missing ui.menu
to themes, fix issues with some themes
This commit is contained in:
parent
e7e13dcf06
commit
9be810fd01
@ -59,7 +59,9 @@
|
||||
# "ui.cursor.match" # TODO might want to override this because dimmed is not widely supported
|
||||
"ui.cursor.match" = { fg = "#313f4e", bg = "#dc7759" }
|
||||
"ui.cursor" = { fg = "#ABB2BF", modifiers = ["reversed"] }
|
||||
"ui.menu.selected" = { fg = "#e5ded6", bg = "#313f4e" }
|
||||
|
||||
"ui.menu" = { fg = "#e5ded6bg", bg = "#232d38" }
|
||||
"ui.menu.selected" = { bg = "#313f4e" }
|
||||
|
||||
"warning" = "#dc7759"
|
||||
"error" = "#dc597f"
|
||||
|
@ -57,6 +57,7 @@
|
||||
|
||||
"ui.selection" = { bg = "#540099" }
|
||||
# "ui.cursor.match" # TODO might want to override this because dimmed is not widely supported
|
||||
"ui.menu" = { fg = "#7B91B3", bg = "#F3EAE9" }
|
||||
"ui.menu.selected" = { fg = "#D74E50", bg = "#F3EAE9" }
|
||||
|
||||
"warning" = "#D4A520"
|
||||
|
@ -59,7 +59,8 @@
|
||||
"ui.window" = { bg = "widget" }
|
||||
"ui.popup" = { bg = "widget" }
|
||||
"ui.help" = { bg = "widget" }
|
||||
"ui.menu.selected" = { bg = "widget" }
|
||||
"ui.menu" = { bg = "widget" }
|
||||
"ui.menu.selected" = { bg = "#414339" }
|
||||
|
||||
"ui.cursor" = { fg = "cursor", modifiers = ["reversed"] }
|
||||
"ui.cursor.primary" = { fg = "cursor", modifiers = ["reversed"] }
|
||||
@ -71,7 +72,7 @@
|
||||
"ui.linenr" = { fg = "#90908a" }
|
||||
"ui.linenr.selected" = { fg = "#c2c2bf" }
|
||||
|
||||
"ui.statusline" = { fg = "active_text", bg = "#75715e" }
|
||||
"ui.statusline" = { fg = "active_text", bg = "#414339" }
|
||||
"ui.statusline.inactive" = { fg = "active_text", bg = "#75715e" }
|
||||
|
||||
"ui.text" = { fg = "text", bg = "background" }
|
||||
@ -98,3 +99,4 @@ active_text = "#ffffff"
|
||||
cursor = "#a6a6a6"
|
||||
inactive_cursor = "#878b91"
|
||||
widget = "#1e1f1c"
|
||||
selection = "#414339"
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "base8", bg = "base3" }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
"ui.virtual" = "base5"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "base8", bg = "base3" }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
"ui.virtual" = "base5"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "base8", bg = "base3" }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
"ui.virtual" = "base5"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "base8", bg = "base3" }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
"ui.virtual" = "base5"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "base8", bg = "base3" }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
"ui.virtual" = "base5"
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
"ui.linenr.selected" = { fg = "nord4" }
|
||||
"ui.text.focus" = { fg = "nord8", modifiers= ["bold"] }
|
||||
"ui.menu" = { fg = "nord6", bg = "#232d38" }
|
||||
"ui.menu.selected" = { fg = "nord8", bg = "nord2" }
|
||||
"ui.virtual" = "gray"
|
||||
|
||||
|
@ -69,6 +69,7 @@ diagnostic = { modifiers = ["underlined"] }
|
||||
"ui.help" = { bg = "gray" }
|
||||
"ui.popup" = { bg = "gray" }
|
||||
"ui.window" = { bg = "gray" }
|
||||
"ui.menu" = { fg = "white", bg = "gray" }
|
||||
"ui.menu.selected" = { fg = "black", bg = "blue" }
|
||||
|
||||
[palette]
|
||||
|
@ -92,9 +92,10 @@
|
||||
"ui.text" = { fg = "black" }
|
||||
"ui.text.focus" = { fg = "red", bg = "light-white", modifiers = ["bold"] }
|
||||
|
||||
"ui.help" = { bg = "light-white" }
|
||||
"ui.help" = { fg = "black", bg = "light-white" }
|
||||
"ui.popup" = { bg = "light-white" }
|
||||
"ui.window" = { bg = "light-white" }
|
||||
"ui.menu" = { fg = "black", bg = "light-white" }
|
||||
"ui.menu.selected" = { fg = "white", bg = "light-blue" }
|
||||
|
||||
[palette]
|
||||
|
@ -64,7 +64,7 @@ label = "honey"
|
||||
"ui.cursor" = { modifiers = ["reversed"] }
|
||||
"ui.highlight" = { bg = "bossanova" }
|
||||
|
||||
"ui.menu" = { fg = "lilac", bg = "revolver" }
|
||||
"ui.menu" = { fg = "lavender", bg = "revolver" }
|
||||
"ui.menu.selected" = { fg = "revolver", bg = "white" }
|
||||
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
|
Loading…
Reference in New Issue
Block a user