add harpoon colors

This commit is contained in:
lucy 2026-02-01 23:10:23 +01:00
parent 0edeeac71b
commit 752a16107e
2 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# The kitty terminal template for matugen
cursor {{colors.primary.default.hex}}
background {{colors.background.default.hex }}
background {{colors.background.default.hex | set_saturation: 2.0 }}
foreground {{colors.on_background.default.hex}}
color0 {{colors.surface.default.hex}}

View File

@ -38,7 +38,12 @@ hl("Cursor", { fg = c.bg, bg = c.cursor })
hl("LineNr", { fg = c.c8 })
hl("CursorLine", { bg = c.c0 })
hl("StatusLine", { fg = c.fg, bg = c.c0 })
-- Harpoon Colors
hl("HarpoonInactive", { fg = c.fg, bg = c.bg })
hl("HarpoonActive", { fg = c.bg, bg = c.c2 })
hl("HarpoonNumberInactive", { fg = c.fg, bg = c.bg })
hl("HarpoonNumberActive", { fg = c.bg, bg = c.c2 })
hl("TabLineFill", { fg = c.fg, bg = c.bg })
-- Syntax
hl("Comment", { fg = c.c8, italic = true })
hl("Constant", { fg = c.c3 })