Skip to content

Commit 1768f19

Browse files
committed
Fix Whitespace and NonText color
1 parent fbcffb4 commit 1768f19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lua/darkplus/theme.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ theme.set_highlights = function()
2323
hl(0, "FoldColumn", { fg = c.light_gray, bg = c.alt_bg })
2424
hl(0, "LineNr", { fg = c.dark_gray, bg = 'NONE' })
2525
hl(0, "FloatBorder", { fg = c.border, bg = c.bg })
26-
hl(0, "Whitespace", { fg = c.dark_gray, bg = 'NONE' })
26+
hl(0, "Whitespace", { fg = c.indent, bg = 'NONE' })
2727
hl(0, "VertSplit", { fg = c.light_gray, bg = c.bg })
2828
hl(0, "CursorLine", { fg = 'NONE', bg = c.cursorline })
2929
hl(0, "CursorColumn", { fg = 'NONE', bg = c.alt_bg })
@@ -54,7 +54,7 @@ theme.set_highlights = function()
5454
hl(0, "MoreMsg", { fg = c.dark_gray, bg = 'NONE' })
5555
hl(0, "Question", { fg = c.dark_gray, bg = 'NONE' })
5656
hl(0, "EndOfBuffer", { fg = c.bg, bg = 'NONE' })
57-
hl(0, "NonText", { fg = c.indent_active, bg = 'NONE' })
57+
hl(0, "NonText", { fg = c.indent, bg = 'NONE' })
5858
hl(0, "TabLine", { fg = c.light_gray, bg = c.alt_bg })
5959
hl(0, "TabLineSel", { fg = c.alt_fg, bg = c.bg })
6060
hl(0, "TabLineFill", { fg = c.alt_fg, bg = c.alt_bg })

0 commit comments

Comments
 (0)