Skip to content

Commit

Permalink
fix(snacks): set color for indents
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Dec 14, 2024
1 parent 7afd35e commit 74f9110
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,11 @@ function M.setup(colors, opts)
OverseerCANCELED = { fg = theme.diag.warning },
OverseerFAILURE = { fg = theme.diag.error },
OverseerTaskBorder = { fg = theme.ui.win_separator },

-- Snacks
SnacksIndent = { fg = theme.ui.indent },
SnacksIndentScope = { fg = theme.ui.indent_scope },
SnacksIndentChunk = { fg = theme.ui.indent_scope },
}
end

Expand Down
2 changes: 2 additions & 0 deletions lua/kanagawa-paper/themes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
---@field whitespace ColorSpec Whitespace
---@field win_separator ColorSpec
---@field indent ColorSpec Indent line character
---@field indent_scope ColorSpec Indent scope character
---@field picker ColorSpec Color of picker letters e.g. bufferline pick buffer
---@field pmenu MenuElements
---@field float FloatElements
Expand Down Expand Up @@ -152,6 +153,7 @@ return function(palette)

win_separator = palette.dragonViolet,
indent = palette.sumiInk5,
indent_scope = palette.dragonViolet,
picker = palette.dragonRed,
pmenu = {
fg = palette.fujiWhite,
Expand Down

0 comments on commit 74f9110

Please sign in to comment.