Skip to content

Commit

Permalink
fix(theme): change color base2 and change IblIndent colorscheme
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Dec 6, 2023
1 parent f6c802c commit 864da5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/dullahan/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ M.default = {
base00 = hsl(0, 0, 40), -- #666666
base0 = hsl(0, 0, 95), -- #f2f2f2
base1 = hsl(200, 100, 58), -- #29b8ff
base2 = hsl(0, 0, 47), -- #787878
base2 = hsl(0, 0, 35), -- #595959
base3 = hsl(0, 0, 78), -- #c7c7c7
base4 = hsl(0, 0, 100), -- #ffffff
yellow = hsl(245, 100, 68), -- #695cff
Expand Down
2 changes: 1 addition & 1 deletion lua/dullahan/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ function M.setup()
NavicText = { fg = c.fg, bg = c.bg_statusline },
NavicSeparator = { fg = c.fg, bg = c.bg_statusline },

IblIndent = { fg = c.base03, nocombine = true },
IblIndent = { fg = c.base2, style = options.styles.comments, nocombine = true },
IndentBlanklineChar = { fg = c.base03, nocombine = true },
IndentBlanklineContextChar = { fg = c.orange300, nocombine = true },

Expand Down

0 comments on commit 864da5b

Please sign in to comment.