Fix helix theme's word selection colors (#5630)
* Fix helix theme's word selection colors Without this fix, if users enabled `editor.cursorline`, the word selection would not be visually distinct from the cursorline selection. Closes: https://github.com/basecamp/omarchy/issues/5580 Signed-off-by: Luke Hsiao <luke@hsiao.dev> * Make Retro-82 color0 visually distinct from background Signed-off-by: Luke Hsiao <luke@hsiao.dev> * Make matte-black selection background distinct from color0 Signed-off-by: Luke Hsiao <luke@hsiao.dev> --------- Signed-off-by: Luke Hsiao <luke@hsiao.dev>
This commit is contained in:
@@ -87,7 +87,7 @@
|
||||
"ui.virtual.jump-label" = { fg = "color1", modifiers = ["bold"] }
|
||||
"ui.virtual.whitespace" = "color8"
|
||||
|
||||
"ui.selection" = { bg = "color0" }
|
||||
"ui.selection" = { bg = "selection_background", fg = "selection_foreground" }
|
||||
|
||||
"ui.cursor" = { fg = "background", bg = "cursor" }
|
||||
"ui.cursor.primary" = { fg = "background", bg = "cursor" }
|
||||
|
||||
Reference in New Issue
Block a user