mirror of https://github.com/helix-editor/helix
Sonokai theme: style secondary selections differently (#5440)
Without styling the primary and secondary selections differently, it's impossible to tell them apart when cycling through selections. Make the primary selection slightly brighter and secondary selections slightly paler.pull/5185/head
parent
e83ce72240
commit
4726ae9df6
|
@ -56,7 +56,8 @@
|
||||||
"ui.cursor.match" = { fg = "orange", bg = "diff_yellow" }
|
"ui.cursor.match" = { fg = "orange", bg = "diff_yellow" }
|
||||||
"ui.cursor.insert" = { fg = "black", bg = "grey" }
|
"ui.cursor.insert" = { fg = "black", bg = "grey" }
|
||||||
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
|
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
|
||||||
"ui.selection" = { bg = "bg4" }
|
"ui.selection" = { bg = "bg5" }
|
||||||
|
"ui.selection.primary" = { bg = "bg4" }
|
||||||
"ui.linenr" = "grey"
|
"ui.linenr" = "grey"
|
||||||
"ui.linenr.selected" = "fg"
|
"ui.linenr.selected" = "fg"
|
||||||
"ui.cursorline.primary" = { bg = "bg1" }
|
"ui.cursorline.primary" = { bg = "bg1" }
|
||||||
|
@ -91,7 +92,8 @@ bg0 = "#2c2e34"
|
||||||
bg1 = "#33353f"
|
bg1 = "#33353f"
|
||||||
bg2 = "#363944"
|
bg2 = "#363944"
|
||||||
bg3 = "#3b3e48"
|
bg3 = "#3b3e48"
|
||||||
bg4 = "#545862"
|
bg4 = "#5C606A"
|
||||||
|
bg5 = "#444852"
|
||||||
bg_red = "#ff6077"
|
bg_red = "#ff6077"
|
||||||
diff_red = "#55393d"
|
diff_red = "#55393d"
|
||||||
bg_green = "#a7df78"
|
bg_green = "#a7df78"
|
||||||
|
|
Loading…
Reference in New Issue