Skip to content

Commit

Permalink
fix(theme): update the FoldColumn and Folded highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 5, 2024
1 parent f606dbe commit cdd7969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/pastelnight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ function M.setup()
Terminal = { fg = c.fg, bg = options.transparent and c.none or c.bg }, --- Terminal text.
EndOfBuffer = { fg = c.bg, bg = config.transparent and c.none or c.bg }, --- Filler lines (~) after the end of the buffer.

Folded = { fg = c.base200, bg = config.transparent and c.none or c.base400 }, --- line used for closed folds.
FoldColumn = { fg = c.fg, bg = config.transparent and c.none or c.bg }, --- 'foldcolumn'.
Folded = { fg = c.base400, bg = config.transparent and c.none or c.base600 }, --- line used for closed folds.
FoldColumn = { fg = c.base300, bg = config.transparent and c.none or c.bg}, --- 'foldcolumn'.
SignColumn = { fg = c.fg, bg = config.transparent and c.none or c.bg }, --- column where |signs| are displayed.
Conceal = { fg = c.base200, bg = c.base400 }, --- placeholder characters substituted for concealed text (see 'conceallevel').
ColorColumn = { bg = c.base400 }, --- used for the columns set with 'colorcolumn'.
Expand Down

0 comments on commit cdd7969

Please sign in to comment.