mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Add theme key for selected line number
Adds `ui.linenr.selected` which controls highlight of linu numbes which have cursors on. - Fallback to linenr if linenr.selected is missing - Update docs and themes - Add TODOs for themes with temporary linenr.selected
This commit is contained in:
parent
33a35b7589
commit
d1c8a74771
7 changed files with 56 additions and 38 deletions
|
@ -30,6 +30,7 @@
|
|||
|
||||
"ui.background" = { bg = "#161c23" }
|
||||
"ui.linenr" = { fg = "#415367" }
|
||||
"ui.linenr.selected" = { fg = "#e5ded6" } # TODO
|
||||
"ui.statusline" = { bg = "#232d38" }
|
||||
"ui.popup" = { bg = "#232d38" }
|
||||
"ui.window" = { bg = "#232d38" }
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
|
||||
"ui.background" = { bg = "#FFFCFD" }
|
||||
"ui.linenr" = { fg = "#bbbbbb" }
|
||||
"ui.linenr.selected" = { fg = "#F3EAE9" } # TODO
|
||||
"ui.statusline" = { bg = "#F3EAE9" }
|
||||
"ui.popup" = { bg = "#F3EAE9" }
|
||||
"ui.window" = { bg = "#D8B8B3" }
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
"ui.background" = { fg = "#ABB2BF", bg = "#282C34" }
|
||||
"ui.help" = { bg = "#3E4452" }
|
||||
"ui.linenr" = { fg = "#4B5263", modifiers = ['dim'] }
|
||||
"ui.linenr.selected" = { fg = "#ABB2BF" }
|
||||
"ui.popup" = { bg = "#3E4452" }
|
||||
"ui.statusline" = { fg = "#ABB2BF", bg = "#2C323C" }
|
||||
"ui.selection" = { bg = "#3E4452" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue