Skip to content

Commit 5827dc9

Browse files
committed
fix: improve contrast for line numbers
as reported in #52
1 parent 638e37c commit 5827dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/cyberdream/theme.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function M.setup()
5959
SignColumn = { fg = t.grey, bg = t.bg },
6060
SignColumnSB = { fg = t.grey, bg = t.bg },
6161
Substitute = { fg = t.red, bg = t.bgHighlight },
62-
LineNr = { fg = t.bgHighlight },
62+
LineNr = { fg = util.blend(t.bgHighlight, t.fg, 0.9) },
6363
CursorLineNr = { fg = t.grey },
6464
MatchParen = { fg = t.pink, bg = t.bgHighlight },
6565
ModeMsg = { fg = t.fg },

0 commit comments

Comments
 (0)