--[[ BBB ██████╗ ███████╗ █████╗ ██╗ ██╗ B#BGG ██╔══██╗██╔════╝██╔══██╗██║ ██╔╝ GB&BG ! G ██████╔╝█████╗ ███████║█████╔╝ ##GGB&&BGGBG! B ██╔═══╝ ██╔══╝ ██╔══██║██╔═██╗ B&&&@@@@&###G ~!~ ██║ ███████╗██║ ██║██║ ██╗ GB&#@@@@&@B #&#G ~^ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ B&@@@@@@@& GG ~:! ^ ^ neovim color scheme G#&@&@@&@&G ~ GB&&@@&G@B GG ~ # ^ * a warm colorscheme with #&@@@@@@#G . GG #G ## ^ ! blue and red tones, to B B&&&&@@&&# ! ^ ## G GB&&#GG# B G~. keep you cozy at night GGB G@@#&&#G ~ . B GBB###&@@B G ^ GGG B&#B G .:! ! @B B#GB###GB ! ^ * by alemi GG ! GB@&BB : !.G#GG B#&&#G G G . .^.: GB . GG#@@@&## : !. # G B&@@#B : GBG . .: !^G B###### ^^&@@@&BG G . B##BGBB B #B && . !G .:B GB##B &##B BBG!^&@&#B ^ :. ##GGG GG B #G G &B~ ^ .:!G#&&! #BB# BGB&&&&&##G &###B# G . ~ B#&&&BBG#&B GGGBB GB !! BG :G GG GG G#&#&. :@@@&& BG#&##&#G :G@@BG ! # ::B#! &&#G GB#G &@@@@@@@@@& # GGGG GGG B&&#:^ B@@@&@@@ BBG#B .~ @@B .~ G B#G GB & GBBG !G&#&&&&&&&&&& : : G G&&#: &&@@@&&&@@ #BGGG .!&#B ~!: . GG #BGBGB#### ~ ~ &BGGGB#&B ! !~ ^.:~GG B&&&! !&&&&&& GG& ~ G @&&G !!!G BGG B&&B G ^ ! . @&@&&&&B ^ ::###B&&GGGB! @@@@@ BG ~# GGG #@#B BGG#BB##G###B ~.! &&&#B## : #&@&#B#B G BB#&&@@@@@& B~ ~ BGG GB# G G B#&G :.. : GGB G &&&B GG GG#BBB G : G BG GBBBG GGG BGBGGGGB#B B## : G G ! : &B##G &@&#GGBG G G G&& ]]-- --- utility function to define nested color table in one line -- first three arguments are (dark, normal, bright) strings, in form #ACACAC -- last three arguments are (dark, normal, bright) numbers from x11 color table local function COLOR(dark, normal, bright, code_d, code_n, code_b) return { dark = {gui = dark, term = code_d}, normal = {gui = normal, term = code_n}, bright = {gui = bright, term = code_b}, } end --- utility function to define highlight table from palette colors -- All params can be nil, will define an empty highlight colors local function HIGHLIGHT(fg, bg, attrs) local result = {} if attrs ~= nil then for k, v in pairs(attrs) do if result.cterm == nil then result.cterm = {} end if k == "bold" or k == "italic" or k == "underline" then result.cterm[k] = v end result[k] = v end end if fg ~= nil then result.ctermfg = fg.term result.fg = fg.gui end if bg ~= nil then result.ctermbg = bg.term result.bg = bg.gui end return result end --- Color palette object, containing colors and setter methods -- @field set_colors function to easily apply color scheme local PALETTE = { --|| DARK NORMAL BRIGHT ( x11 codes ) -- TODO map dark variants black = COLOR("#16161c", "#201f29", "#302E3A", nil, 235, 238), gray = COLOR("#494756", "#848291", "#A8A7AF", nil, 244, nil), white = COLOR("#ADA9A1", "#D4D2CF", "#E8E1D3", nil, 252, 15 ), azure = COLOR("#5D748C", "#81A1C1", "#A6B4C2", nil, nil, nil), blue = COLOR("#48589C", "#5B6EA3", "#798DB8", nil, 67, 4 ), purple = COLOR("#574C85", "#7468B0", "#8F81D4", nil, 60, 6 ), pink = COLOR("#63296E", "#84508C", "#AC7EA8", nil, nil, nil), red = COLOR("#824E53", "#BF616A", "#D1888E", nil, 1, 9 ), orange = COLOR("#917253", "#AF875F", "#D69C63", nil, 137, nil), yellow = COLOR("#A8956D", "#EBCB8B", "#EBD4A7", nil, 11, nil), green = COLOR("#32664A", "#2E8757", "#55886C", nil, 2, 10 ), cyan = COLOR("#116E70", "#05979A", "#4AD9D9", nil, 6, nil), none = COLOR( nil, nil, nil, nil, 0, 0 ), } --|| THEME DEFINITIONS function PALETTE:set_syntax_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "Normal", HIGHLIGHT(self.white.normal, nil, nil)) -- set color for whitespace vim.api.nvim_set_hl(0, "NormalNC", HIGHLIGHT(self.white.dark, nil, nil)) -- set color for whitespace vim.api.nvim_set_hl(0, "Whitespace", HIGHLIGHT(self.black.normal, nil, nil)) -- set color for whitespace vim.api.nvim_set_hl(0, "Comment", HIGHLIGHT(self.gray.normal, nil, nil)) vim.api.nvim_set_hl(0, "Constant", HIGHLIGHT(self.purple.bright, nil, nil)) vim.api.nvim_set_hl(0, "String", HIGHLIGHT(self.purple.normal, nil, nil)) vim.api.nvim_set_hl(0, "Boolean", HIGHLIGHT(self.purple.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "Function", HIGHLIGHT(self.azure.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "Identifier", HIGHLIGHT(self.blue.bright, nil, nil)) vim.api.nvim_set_hl(0, "Statement", HIGHLIGHT(self.red.bright, nil, nil)) vim.api.nvim_set_hl(0, "PreProc", HIGHLIGHT(self.pink.bright, nil, nil)) vim.api.nvim_set_hl(0, "Include", HIGHLIGHT(self.cyan.normal, nil, nil)) vim.api.nvim_set_hl(0, "Type", HIGHLIGHT(self.orange.normal, nil, nil)) vim.api.nvim_set_hl(0, "Special", HIGHLIGHT(self.yellow.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "Delimiter", HIGHLIGHT(self.gray.bright, nil, nil)) vim.api.nvim_set_hl(0, "Directory", HIGHLIGHT(self.blue.bright, nil, nil)) end function PALETTE:set_treesitter_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "@text.literal", HIGHLIGHT(self.yellow.bright, nil, nil)) vim.api.nvim_set_hl(0, "@text.reference", HIGHLIGHT(self.white.bright, nil, {italic=true})) vim.api.nvim_set_hl(0, "@text.title", HIGHLIGHT(self.white.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@text.uri", HIGHLIGHT(self.azure.bright, nil, {underline=true})) vim.api.nvim_set_hl(0, "@text.todo", HIGHLIGHT(self.gray.normal, nil, {italic=true})) vim.api.nvim_set_hl(0, "@comment", HIGHLIGHT(self.gray.normal, nil, nil)) vim.api.nvim_set_hl(0, "@punctuation", HIGHLIGHT(self.gray.bright, nil, nil)) vim.api.nvim_set_hl(0, "@punctuation.special", HIGHLIGHT(self.gray.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "@constant", HIGHLIGHT(self.purple.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "@constant.builtin", HIGHLIGHT(self.purple.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@constant.macro", HIGHLIGHT(self.purple.normal, nil, {italic=true})) vim.api.nvim_set_hl(0, "@string", HIGHLIGHT(self.purple.dark, nil, nil)) vim.api.nvim_set_hl(0, "@string.escape", HIGHLIGHT(self.purple.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "@string.special", HIGHLIGHT(self.purple.dark, nil, {italic=true})) -- ? vim.api.nvim_set_hl(0, "@macro", HIGHLIGHT(self.pink.bright, nil, nil)) vim.api.nvim_set_hl(0, "@character", HIGHLIGHT(self.pink.normal, nil, nil)) vim.api.nvim_set_hl(0, "@character.special", HIGHLIGHT(self.pink.normal, nil, nil)) vim.api.nvim_set_hl(0, "@number", HIGHLIGHT(self.pink.normal, nil, nil)) vim.api.nvim_set_hl(0, "@float", HIGHLIGHT(self.pink.normal, nil, nil)) vim.api.nvim_set_hl(0, "@boolean", HIGHLIGHT(self.pink.dark, nil, nil)) vim.api.nvim_set_hl(0, "@function", HIGHLIGHT(self.azure.normal, nil, nil)) vim.api.nvim_set_hl(0, "@function.macro", HIGHLIGHT(self.azure.dark, nil, nil)) vim.api.nvim_set_hl(0, "@function.builtin", HIGHLIGHT(self.azure.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "@parameter", HIGHLIGHT(self.white.dark, nil, nil)) vim.api.nvim_set_hl(0, "@method", HIGHLIGHT(self.blue.bright, nil, nil)) vim.api.nvim_set_hl(0, "@field", HIGHLIGHT(self.blue.normal, nil, nil)) vim.api.nvim_set_hl(0, "@property", HIGHLIGHT(self.blue.dark, nil, nil)) vim.api.nvim_set_hl(0, "@constructor", HIGHLIGHT(self.orange.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@conditional", HIGHLIGHT(self.red.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "@repeat", HIGHLIGHT(self.red.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@label", HIGHLIGHT(self.yellow.bright, nil, nil)) vim.api.nvim_set_hl(0, "@operator", HIGHLIGHT(self.red.dark, nil, nil)) vim.api.nvim_set_hl(0, "@keyword", HIGHLIGHT(self.red.bright, nil, nil)) vim.api.nvim_set_hl(0, "@exception", HIGHLIGHT(self.red.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "@variable", HIGHLIGHT(self.white.bright, nil, nil)) vim.api.nvim_set_hl(0, "@variable.builtin", HIGHLIGHT(self.yellow.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "@type.builtin", HIGHLIGHT(self.orange.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "@type.definition", HIGHLIGHT(self.orange.dark, nil, {italic=true})) vim.api.nvim_set_hl(0, "@type.qualifier", HIGHLIGHT(self.orange.dark, nil, nil)) vim.api.nvim_set_hl(0, "@type", HIGHLIGHT(self.orange.normal, nil, nil)) vim.api.nvim_set_hl(0, "@structure", HIGHLIGHT(self.orange.bright, nil, nil)) vim.api.nvim_set_hl(0, "@storageclass", HIGHLIGHT(self.orange.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@namespace", HIGHLIGHT(self.cyan.dark, nil, nil)) vim.api.nvim_set_hl(0, "@include", HIGHLIGHT(self.cyan.dark, nil, {bold=true})) vim.api.nvim_set_hl(0, "@preproc", HIGHLIGHT(self.pink.dark, nil, nil)) vim.api.nvim_set_hl(0, "@define", HIGHLIGHT(self.pink.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "@debug", HIGHLIGHT(self.cyan.bright, nil, {italic=true})) -- vim.api.nvim_set_hl(0, "@tag ", HIGHLIGHT(self.cyan.bright, nil, nil)) end function PALETTE:set_semantic_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "@lsp.type.class", { link = "@storageclass" }) vim.api.nvim_set_hl(0, "@lsp.type.comment", { link = "@comment" }) vim.api.nvim_set_hl(0, "@lsp.type.decorator", { link = "@macro" }) vim.api.nvim_set_hl(0, "@lsp.type.annotation", { link = "@macro" }) vim.api.nvim_set_hl(0, "@lsp.type.enum", { link = "@structure" }) vim.api.nvim_set_hl(0, "@lsp.type.enumMember", {}) -- HIGHLIGHT(self.orange.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "@lsp.type.function", { link = "@function" }) vim.api.nvim_set_hl(0, "@lsp.type.interface", { link = "@type.qualifier" }) vim.api.nvim_set_hl(0, "@lsp.type.operator", { link = "@operator" }) -- vim.api.nvim_set_hl(0, "@lsp.type.keyword", { link = "@keyword" }) vim.api.nvim_set_hl(0, "@lsp.type.macro", { link = "@function.macro" }) vim.api.nvim_set_hl(0, "@lsp.type.method", { link = "@method" }) vim.api.nvim_set_hl(0, "@lsp.type.namespace", { link = "@namespace" }) vim.api.nvim_set_hl(0, "@lsp.type.parameter", { link = "@parameter" }) vim.api.nvim_set_hl(0, "@lsp.type.property", { link = "@field" }) vim.api.nvim_set_hl(0, "@lsp.type.struct", { link = "@type" }) vim.api.nvim_set_hl(0, "@lsp.type.type", { link = "@define" }) vim.api.nvim_set_hl(0, "@lsp.type.typeParameter", { link = "@type.definition" }) vim.api.nvim_set_hl(0, "@lsp.type.variable", { link = "@variable" }) end function PALETTE:set_ui_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "NonText", HIGHLIGHT(self.black.normal, nil, nil)) vim.api.nvim_set_hl(0, "Visual", HIGHLIGHT(nil, self.black.bright, nil)) vim.api.nvim_set_hl(0, "Search", HIGHLIGHT(self.yellow.bright, self.gray.dark, nil)) vim.api.nvim_set_hl(0, "CurSearch", HIGHLIGHT(self.yellow.bright, self.gray.dark, {bold=true})) vim.api.nvim_set_hl(0, "IncSearch", { link = "CurSearch" }) vim.api.nvim_set_hl(0, "Folded", HIGHLIGHT(self.cyan.normal, self.black.normal, nil)) vim.api.nvim_set_hl(0, "FoldColumn", HIGHLIGHT(self.cyan.normal, nil, nil)) vim.api.nvim_set_hl(0, "VertSplit", HIGHLIGHT(self.black.normal, self.black.normal, nil)) -- Split divider color vim.api.nvim_set_hl(0, "WinSeparator", HIGHLIGHT(self.black.bright, nil, nil)) -- Split divider color vim.api.nvim_set_hl(0, "SignColumn", HIGHLIGHT(nil, nil, nil)) -- Gutter color vim.api.nvim_set_hl(0, "CursorLine", HIGHLIGHT(nil, nil, nil)) -- Line number color vim.api.nvim_set_hl(0, "CursorLineSign", HIGHLIGHT(nil, self.black.normal, nil)) -- CursorLine color (in sign column) vim.api.nvim_set_hl(0, "CursorLineNr", HIGHLIGHT(self.yellow.normal, self.black.normal, {bold=true})) -- CursorLine color (in number column) vim.api.nvim_set_hl(0, "LineNr", HIGHLIGHT(self.black.bright, nil, nil)) -- Number column color vim.api.nvim_set_hl(0, "MsgArea", HIGHLIGHT(self.white.dark, nil, nil)) -- Number column color vim.api.nvim_set_hl(0, "Conceal", HIGHLIGHT(self.gray.normal, self.black.normal, nil)) vim.api.nvim_set_hl(0, "Pmenu", HIGHLIGHT(nil, self.black.normal, nil)) -- Balloon color vim.api.nvim_set_hl(0, "PmenuSel", HIGHLIGHT(nil, self.gray.dark, nil)) -- Balloon color -- vim.api.nvim_set_hl(0, "PmenuSbar", HIGHLIGHT(nil, self.black.normal, nil)) -- Balloon color -- vim.api.nvim_set_hl(0, "PmenuThumb", HIGHLIGHT(nil, self.black.normal, nil)) -- Balloon color vim.api.nvim_set_hl(0, "NormalFloat", HIGHLIGHT(self.white.dark, self.black.normal, nil)) -- Used mostly for replace popup vim.api.nvim_set_hl(0, "FloatBorder", HIGHLIGHT(self.black.bright, nil, nil)) -- Used mostly for replace popup vim.api.nvim_set_hl(0, "FloatTitle", HIGHLIGHT(self.black.dark, self.gray.bright, {bold=true})) -- custom definition of dessing.nvim -- must configure rust-tools to use this as group vim.api.nvim_set_hl(0, "InlayHint", HIGHLIGHT(self.gray.dark, nil, nil)) vim.api.nvim_set_hl(0, "LspInlayHint", HIGHLIGHT(self.gray.dark, nil, nil)) vim.api.nvim_set_hl(0, "Question", HIGHLIGHT(self.cyan.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "MoreMsg", HIGHLIGHT(self.black.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "Error", HIGHLIGHT(self.red.normal, nil, {underline=true})) vim.api.nvim_set_hl(0, "ErrorMsg", HIGHLIGHT(self.white.normal, self.red.normal, nil)) vim.api.nvim_set_hl(0, "Todo" , HIGHLIGHT(self.black.normal, self.orange.bright, {bold=true})) vim.api.nvim_set_hl(0, "WarningMsg", HIGHLIGHT(self.black.normal, self.yellow.normal, nil)) vim.api.nvim_set_hl(0, "Title", HIGHLIGHT(self.red.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, "WildMenu", HIGHLIGHT(self.gray.bright, self.orange.dark, nil)) vim.api.nvim_set_hl(0, "ColorColumn", HIGHLIGHT(nil, self.black.dark, nil)) vim.api.nvim_set_hl(0, "DiagnosticWarn", HIGHLIGHT(self.orange.normal, nil, nil)); vim.api.nvim_set_hl(0, "DiagnosticError", HIGHLIGHT(self.red.normal, nil, nil)); vim.api.nvim_set_hl(0, "DiagnosticInfo", HIGHLIGHT(self.cyan.normal, nil, nil)); vim.api.nvim_set_hl(0, "DiagnosticHint", HIGHLIGHT(self.gray.normal, nil, nil)); vim.api.nvim_set_hl(0, "DiagnosticUnderlineWarn", HIGHLIGHT(nil, nil, {underdashed=true, sp=self.orange.normal.gui})); vim.api.nvim_set_hl(0, "DiagnosticUnderlineError", HIGHLIGHT(nil, nil, {underline=true, sp=self.red.normal.gui})); vim.api.nvim_set_hl(0, "DiagnosticUnderlineInfo", HIGHLIGHT(nil, nil, {underdotted=true, sp=self.cyan.normal.gui})); vim.api.nvim_set_hl(0, "DiagnosticUnderlineHint", HIGHLIGHT(nil, nil, {underdotted=true, sp=self.gray.normal.gui})); end function PALETTE:set_diff_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "diffAdded", HIGHLIGHT(self.green.normal, self.black.dark, nil)) vim.api.nvim_set_hl(0, "diffChanged", HIGHLIGHT(self.purple.normal, self.black.dark, nil)) vim.api.nvim_set_hl(0, "diffRemoved", HIGHLIGHT(self.red.normal, self.black.dark, nil)) vim.api.nvim_set_hl(0, "diffLine", HIGHLIGHT(self.pink.normal, self.black.bright, {bold=true})) vim.api.nvim_set_hl(0, "diffSubname", HIGHLIGHT(self.yellow.dark, self.black.bright, nil)) end function PALETTE:set_spell_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "SpellBad", HIGHLIGHT(nil, nil, {underline=true})) vim.api.nvim_set_hl(0, "SpellCap", HIGHLIGHT(nil, nil, {underline=true})) vim.api.nvim_set_hl(0, "SpellLocal", HIGHLIGHT(nil, nil, {underline=true})) vim.api.nvim_set_hl(0, "SpellRare", HIGHLIGHT(nil, nil, {bold=true})) end function PALETTE:set_tab_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "TabLineFill", HIGHLIGHT(self.yellow.normal, self.black.normal, nil)) vim.api.nvim_set_hl(0, "TabLineSel", HIGHLIGHT(self.black.normal, self.gray.normal, {bold=true})) vim.api.nvim_set_hl(0, "TabLine", HIGHLIGHT(self.gray.normal, self.black.normal, nil)) end function PALETTE:set_statusline_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "StatusLine", HIGHLIGHT(self.gray.normal, self.black.normal, nil)) vim.api.nvim_set_hl(0, "StatusLineBlock", HIGHLIGHT(self.gray.normal, self.gray.dark, {bold=true})) vim.api.nvim_set_hl(0, "NormalMode", HIGHLIGHT(self.black.normal, self.red.normal, {bold=true})) vim.api.nvim_set_hl(0, "InsertMode", HIGHLIGHT(self.black.normal, self.orange.bright, {bold=true})) vim.api.nvim_set_hl(0, "VisualMode", HIGHLIGHT(self.black.normal, self.azure.normal, {bold=true})) vim.api.nvim_set_hl(0, "SpecialMode", HIGHLIGHT(self.black.normal, self.pink.normal, {bold=true})) end function PALETTE:set_neotree_colors() vim.api.nvim_set_hl(0, 'NeoTreeTitleBar', HIGHLIGHT(self.white.bright, nil, {bold=true})) vim.api.nvim_set_hl(0, 'NeoTreeFloatTitle', HIGHLIGHT(self.white.bright, self.black.bright, {bold=true})) vim.api.nvim_set_hl(0, "NeoTreeGitAdded", HIGHLIGHT(self.green.normal, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitDeleted", HIGHLIGHT(self.red.dark, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitModified", HIGHLIGHT(self.red.bright, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitConflict", HIGHLIGHT(self.purple.bright, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitIgnored", HIGHLIGHT(self.gray.dark, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitRenamed", HIGHLIGHT(self.pink.normal, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitStaged", HIGHLIGHT(self.yellow.normal, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitUnstaged", HIGHLIGHT(self.azure.normal, nil, nil)) vim.api.nvim_set_hl(0, "NeoTreeGitUntracked", HIGHLIGHT(self.orange.normal, nil, nil)) end function PALETTE:set_gitsigns_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "GitSignsChange", HIGHLIGHT(self.yellow.normal, nil, nil)) vim.api.nvim_set_hl(0, "GitSignsChangeLn", { link = "GitSignsChange" }) vim.api.nvim_set_hl(0, "GitSignsAdd", { link = "GitSignsChange" }) vim.api.nvim_set_hl(0, "GitSignsAddLn", { link = "GitSignsChange" }) vim.api.nvim_set_hl(0, "GitSignsDelete", HIGHLIGHT(self.red.bright, nil, nil)) vim.api.nvim_set_hl(0, "GitSignsDeleteLn", { link = "GitSignsDelete" }) vim.api.nvim_set_hl(0, "GitSignsTopdelete", { link = "GitSignsDelete" }) vim.api.nvim_set_hl(0, "GitSignsTopdeleteLn", { link = "GitSignsDelete" }) vim.api.nvim_set_hl(0, "GitSignsChangedelete", { link = "GitSignsDelete" }) vim.api.nvim_set_hl(0, "GitSignsChangedeleteLn", { link = "GitSignsDelete" }) vim.api.nvim_set_hl(0, "GitSignsUntracked", HIGHLIGHT(self.gray.dark, nil, nil)) vim.api.nvim_set_hl(0, "GitSignsUntracked", { link = "GitSignsUntracked" }) end function PALETTE:set_cmp_colors() -- FG BG ATTR -- vim.api.nvim_set_hl(0, "CmpItemMenu", HIGHLIGHT(nil, self.black.bright, nil)) vim.api.nvim_set_hl(0, "CmpItemAbbr", HIGHLIGHT(self.white.dark, nil, nil)) vim.api.nvim_set_hl(0, "CmpItemAbbrDeprecated", HIGHLIGHT(self.white.dark, nil, {strikethrough=true})) vim.api.nvim_set_hl(0, "CmpItemAbbrMatch", HIGHLIGHT(self.white.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "CmpItemAbbrMatchFuzzy", HIGHLIGHT(self.white.normal, nil, nil)) vim.api.nvim_set_hl(0, "CmpItemKind", HIGHLIGHT(self.white.bright, self.gray.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindVariable", HIGHLIGHT(self.white.bright, self.pink.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindInterface", HIGHLIGHT(self.white.bright, self.pink.bright, nil)) vim.api.nvim_set_hl(0, "CmpItemKindText", HIGHLIGHT(self.white.bright, self.gray.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindFunction", HIGHLIGHT(self.white.bright, self.azure.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindMethod", HIGHLIGHT(self.white.bright, self.azure.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindKeyword", HIGHLIGHT(self.white.bright, self.red.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindProperty", HIGHLIGHT(self.white.bright, self.blue.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindField", HIGHLIGHT(self.white.bright, self.blue.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindModule", HIGHLIGHT(self.white.bright, self.cyan.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindClass", HIGHLIGHT(self.white.bright, self.orange.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindStruct", HIGHLIGHT(self.white.bright, self.orange.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindEnum", HIGHLIGHT(self.white.bright, self.orange.bright, nil)) vim.api.nvim_set_hl(0, "CmpItemKindEnumMember", HIGHLIGHT(self.white.bright, self.purple.normal, nil)) vim.api.nvim_set_hl(0, "CmpItemKindConstant", HIGHLIGHT(self.white.bright, self.purple.dark, nil)) vim.api.nvim_set_hl(0, "CmpItemKindValue", HIGHLIGHT(self.white.bright, self.green.normal, nil)) end function PALETTE:set_telescope_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "TelescopeBorder", HIGHLIGHT(self.black.bright, self.none.normal, nil)); vim.api.nvim_set_hl(0, "TelescopeNormal", HIGHLIGHT(nil, self.none.normal, nil)); end function PALETTE:set_lazy_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "LazyButtonActive", HIGHLIGHT(nil, self.gray.dark, {bold=true})); end function PALETTE:set_dap_colors() -- FG BG ATTR vim.api.nvim_set_hl(0, "DapMarks", HIGHLIGHT(self.purple.normal, nil, {bold=true})) vim.api.nvim_set_hl(0, "DapStep", HIGHLIGHT(nil, self.black.normal, nil)) vim.api.nvim_set_hl(0, "DapStepNr", HIGHLIGHT(self.purple.normal, self.black.normal, {bold=true})) -- DapUIVariable xxx links to Normal -- DapUIScope xxx guifg=#00F1F5 -- DapUIType xxx guifg=#D484FF -- DapUIValue xxx links to Normal -- DapUIModifiedValue xxx gui=bold guifg=#00F1F5 -- DapUIDecoration xxx guifg=#00F1F5 -- DapUIThread xxx guifg=#A9FF68 -- DapUIStoppedThread xxx guifg=#00f1f5 -- DapUIFrameName xxx links to Normal -- DapUISource xxx guifg=#D484FF -- DapUILineNumber xxx guifg=#00f1f5 -- DapUIFloatBorder xxx guifg=#00F1F5 -- DapUIWatchesEmpty xxx guifg=#F70067 -- DapUIWatchesValue xxx guifg=#A9FF68 -- DapUIWatchesError xxx guifg=#F70067 -- DapUIBreakpointsPath xxx guifg=#00F1F5 -- DapUIBreakpointsInfo xxx guifg=#A9FF68 -- DapUIBreakpointsCurrentLine xxx gui=bold guifg=#A9FF68 -- DapUIBreakpointsLine xxx links to DapUILineNumber -- DapUIBreakpointsDisabledLine xxx guifg=#424242 -- TODO this is not really part of the colorscheme but vim.fn.sign_define('DapBreakpoint', {text='⬤', texthl='DapMarks', linehl='', numhl=''}) vim.fn.sign_define('DapBreakpointCondition', {text='◯', texthl='DapMarks', linehl='', numhl=''}) vim.fn.sign_define('DapBreakpointRejected', {text='⦻', texthl='DapMarks', linehl='', numhl=''}) vim.fn.sign_define('DapLogPoint', {text='□', texthl='DapMarks', linehl='', numhl=''}) vim.fn.sign_define('DapStopped', {text='➤', texthl='DapStepNr', linehl='DapStep', numhl='DapStepNr'}) end --- set all theme highlight groups function PALETTE:set_colors() -- vim.cmd("highlight! clear") -- core self:set_syntax_colors() self:set_semantic_colors() self:set_ui_colors() self:set_diff_colors() self:set_spell_colors() self:set_tab_colors() self:set_statusline_colors() -- addons self:set_neotree_colors() self:set_treesitter_colors() self:set_gitsigns_colors() self:set_telescope_colors() self:set_lazy_colors() self:set_cmp_colors() self:set_dap_colors() end return PALETTE