feat: all new colors

This commit is contained in:
2026-03-22 04:01:03 -04:00
parent 2082904cd1
commit 73e2ea9e9a
14 changed files with 301 additions and 75 deletions

View File

@@ -1,8 +1,8 @@
local M = {}
local fallback_palette = {
bg = '#262626',
gutter = '#282828',
bg = '#191A1C',
gutter = '#191A1C',
cursor_line = '#202424',
selection = '#08335E',
border = '#404040',
@@ -41,11 +41,11 @@ M.palette = palette
function M.on_colors(colors)
colors.bg = palette.bg
colors.bg_dark = palette.gutter
colors.bg_dark = palette.bg
colors.bg_float = palette.bg
colors.bg_popup = palette.bg
colors.bg_sidebar = palette.gutter
colors.bg_statusline = palette.gutter
colors.bg_sidebar = palette.bg
colors.bg_statusline = palette.bg
colors.bg_highlight = palette.cursor_line
colors.bg_search = palette.selection
colors.bg_visual = palette.selection
@@ -64,7 +64,7 @@ function M.on_colors(colors)
colors.red = palette.error
colors.teal = palette.func
colors.yellow = palette.string
colors.terminal_black = palette.gutter
colors.terminal_black = palette.bg
end
local function set_many(hl, groups, spec)