diff options
| author | Ken Zhou <kendotzhou@gmail.com> | 2022-09-16 23:25:00 -0400 |
|---|---|---|
| committer | Ken Zhou <kendotzhou@gmail.com> | 2022-09-16 23:25:00 -0400 |
| commit | 3f2b987fbba7885d1b87dd8f84530efac2fe7846 (patch) | |
| tree | 7e161206b4f3231d6cbb6925267f622d767950a3 | |
| parent | initial commit (diff) | |
gitignore compiled
159 files changed, 0 insertions, 16221 deletions
diff --git a/compiled/aquarium/colors/aquarium.vim b/compiled/aquarium/colors/aquarium.vim deleted file mode 100644 index 3f8698b..0000000 --- a/compiled/aquarium/colors/aquarium.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local aquarium = require("aquarium") -aquarium.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/aquarium/lua/aquarium/init.lua b/compiled/aquarium/lua/aquarium/init.lua deleted file mode 100644 index 349e17c..0000000 --- a/compiled/aquarium/lua/aquarium/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('aquarium.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'aquarium' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/aquarium/lua/aquarium/palette.lua b/compiled/aquarium/lua/aquarium/palette.lua deleted file mode 100644 index 8f1ae69..0000000 --- a/compiled/aquarium/lua/aquarium/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#ced4df", - darker_black = "#1c1c26", - black = "#20202A", - black2 = "#25252f", - one_bg = "#2a2a34", - one_bg2 = "#34343e", - one_bg3 = "#3e3e48", - grey = "#484852", - grey_fg = "#4e4e58", - grey_fg2 = "#54545e", - light_grey = "#5a5a64", - red = "#ebb9b9", - baby_pink = "#EAC1C1", - pink = "#E9D1D1", - line = "#2d2d37", - green = "#b1dba4", - vibrant_green = "#BEE0A8", - blue = "#CDDBF9", - nord_blue = "#BCCAEB", - yellow = "#E6DFB8", - sun = "#EEE8BA", - purple = "#f6bbe7", - dark_purple = "#E8B6E9", - teal = "#AEDCB7", - orange = "#E8CCA7", - cyan = "#b8dceb", - statusline_bg = "#262630", - lightbg = "#2e2e38", - pmenu_bg = "#ebb9b9", - folder_bg = "#b8dceb", - base00 = "#20202A", - base01 = "#2c2e3e", - base02 = "#3D4059", - base03 = "#313449", - base04 = "#63718b", - base05 = "#bac0cb", - base06 = "#c5cbd6", - base07 = "#ced4df", - base08 = "#ebb9b9", - base09 = "#e8cca7", - base0A = "#e6dfb8", - base0B = "#b1dba4", - base0C = "#b8dceb", - base0D = "#a3b8ef", - base0E = "#f6bbe7", - base0F = "#eAc1c1", -} - -return colors
\ No newline at end of file diff --git a/compiled/aquarium/lua/aquarium/theme.lua b/compiled/aquarium/lua/aquarium/theme.lua deleted file mode 100644 index 1b2e9dd..0000000 --- a/compiled/aquarium/lua/aquarium/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('aquarium.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/ayu-dark/colors/ayu-dark.vim b/compiled/ayu-dark/colors/ayu-dark.vim deleted file mode 100644 index a467b40..0000000 --- a/compiled/ayu-dark/colors/ayu-dark.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local ayu-dark = require("ayu-dark") -ayu-dark.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/ayu-dark/lua/ayu-dark/init.lua b/compiled/ayu-dark/lua/ayu-dark/init.lua deleted file mode 100644 index a2cc382..0000000 --- a/compiled/ayu-dark/lua/ayu-dark/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('ayu-dark.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'ayu-dark' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/ayu-dark/lua/ayu-dark/palette.lua b/compiled/ayu-dark/lua/ayu-dark/palette.lua deleted file mode 100644 index da89946..0000000 --- a/compiled/ayu-dark/lua/ayu-dark/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#ced4df", - darker_black = "#05080e", - black = "#0B0E14", - black2 = "#14171d", - one_bg = "#1c1f25", - one_bg2 = "#24272d", - one_bg3 = "#2b2e34", - grey = "#33363c", - grey_fg = "#3d4046", - grey_fg2 = "#46494f", - light_grey = "#54575d", - red = "#F07178", - baby_pink = "#ff949b", - pink = "#ff8087", - line = "#24272d", - green = "#AAD84C", - vibrant_green = "#b9e75b", - blue = "#36A3D9", - nord_blue = "#43b0e6", - yellow = "#E7C547", - sun = "#f0df8a", - purple = "#c79bf4", - dark_purple = "#A37ACC", - teal = "#74c5aa", - orange = "#ffa455", - cyan = "#95E6CB", - statusline_bg = "#12151b", - lightbg = "#24272d", - pmenu_bg = "#ff9445", - folder_bg = "#98a3af", - base00 = "#0B0E14", - base01 = "#1c1f25", - base02 = "#24272d", - base03 = "#2b2e34", - base04 = "#33363c", - base05 = "#c9c7be", - base06 = "#E6E1CF", - base07 = "#D9D7CE", - base08 = "#c9c7be", - base09 = "#FFEE99", - base0A = "#56c3f9", - base0B = "#AAD84C", - base0C = "#FFB454", - base0D = "#F07174", - base0E = "#FFB454", - base0F = "#CBA6F7", -} - -return colors
\ No newline at end of file diff --git a/compiled/ayu-dark/lua/ayu-dark/theme.lua b/compiled/ayu-dark/lua/ayu-dark/theme.lua deleted file mode 100644 index df00b84..0000000 --- a/compiled/ayu-dark/lua/ayu-dark/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('ayu-dark.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/blossom/colors/blossom.vim b/compiled/blossom/colors/blossom.vim deleted file mode 100644 index 38b2215..0000000 --- a/compiled/blossom/colors/blossom.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local blossom = require("blossom") -blossom.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/blossom/lua/blossom/init.lua b/compiled/blossom/lua/blossom/init.lua deleted file mode 100644 index 1d1af74..0000000 --- a/compiled/blossom/lua/blossom/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('blossom.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'blossom' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/blossom/lua/blossom/palette.lua b/compiled/blossom/lua/blossom/palette.lua deleted file mode 100644 index 199edc4..0000000 --- a/compiled/blossom/lua/blossom/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#695d57", - darker_black = "#dfd8d5", - black = "#e6dfdc", - black2 = "#d9d2cf", - one_bg = "#d0c9c6", - one_bg2 = "#c7c0bd", - one_bg3 = "#c0b9b6", - grey = "#b9b2af", - grey_fg = "#b2aba8", - grey_fg2 = "#aaa3a0", - light_grey = "#a09996", - red = "#b28069", - baby_pink = "#b7856e", - pink = "#c18f78", - line = "#d3ccc9", - green = "#6c805c", - vibrant_green = "#899d79", - blue = "#5f7d9b", - nord_blue = "#5e5f65", - yellow = "#a9a29f", - sun = "#d38a73", - purple = "#a685a6", - dark_purple = "#9c7b9c", - teal = "#4b6987", - orange = "#cc836c", - cyan = "#75998e", - statusline_bg = "#dcd5d2", - lightbg = "#cdc6c3", - pmenu_bg = "#857e7b", - folder_bg = "#746d6a", - base00 = "#e6dfdc", - base01 = "#ded7d4", - base02 = "#d7d0cd", - base03 = "#d1cac7", - base04 = "#cac3c0", - base05 = "#746862", - base06 = "#5e524c", - base07 = "#695d57", - base08 = "#8779a8", - base09 = "#a87678", - base0A = "#738199", - base0B = "#6c805c", - base0C = "#5e908e", - base0D = "#b3816a", - base0E = "#7e8e8e", - base0F = "#976153", -} - -return colors
\ No newline at end of file diff --git a/compiled/blossom/lua/blossom/theme.lua b/compiled/blossom/lua/blossom/theme.lua deleted file mode 100644 index 3d77b24..0000000 --- a/compiled/blossom/lua/blossom/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('blossom.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/catppuccin/colors/catppuccin.vim b/compiled/catppuccin/colors/catppuccin.vim deleted file mode 100644 index e64f23e..0000000 --- a/compiled/catppuccin/colors/catppuccin.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local catppuccin = require("catppuccin") -catppuccin.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/catppuccin/lua/catppuccin/init.lua b/compiled/catppuccin/lua/catppuccin/init.lua deleted file mode 100644 index c2fe5b1..0000000 --- a/compiled/catppuccin/lua/catppuccin/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('catppuccin.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'catppuccin' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/catppuccin/lua/catppuccin/palette.lua b/compiled/catppuccin/lua/catppuccin/palette.lua deleted file mode 100644 index b5f14aa..0000000 --- a/compiled/catppuccin/lua/catppuccin/palette.lua +++ /dev/null @@ -1,51 +0,0 @@ -local colors = { - white = "#D9E0EE", - darker_black = "#191828", - black = "#1E1D2D", - black2 = "#252434", - one_bg = "#2d2c3c", - one_bg2 = "#363545", - one_bg3 = "#3e3d4d", - grey = "#474656", - grey_fg = "#4e4d5d", - grey_fg2 = "#555464", - light_grey = "#605f6f", - red = "#F38BA8", - baby_pink = "#ffa5c3", - pink = "#F5C2E7", - line = "#383747", - green = "#ABE9B3", - vibrant_green = "#b6f4be", - nord_blue = "#8bc2f0", - blue = "#89B4FA", - yellow = "#FAE3B0", - sun = "#ffe9b6", - purple = "#d0a9e5", - dark_purple = "#c7a0dc", - teal = "#B5E8E0", - orange = "#F8BD96", - cyan = "#89DCEB", - statusline_bg = "#232232", - lightbg = "#2f2e3e", - pmenu_bg = "#ABE9B3", - folder_bg = "#89B4FA", - lavender = "#c7d1ff", - base00 = "#1E1D2D", - base01 = "#282737", - base02 = "#2f2e3e", - base03 = "#383747", - base04 = "#414050", - base05 = "#bfc6d4", - base06 = "#ccd3e1", - base07 = "#D9E0EE", - base08 = "#F38BA8", - base09 = "#F8BD96", - base0A = "#FAE3B0", - base0B = "#ABE9B3", - base0C = "#89DCEB", - base0D = "#89B4FA", - base0E = "#CBA6F7", - base0F = "#F38BA8", -} - -return colors
\ No newline at end of file diff --git a/compiled/catppuccin/lua/catppuccin/theme.lua b/compiled/catppuccin/lua/catppuccin/theme.lua deleted file mode 100644 index 3569039..0000000 --- a/compiled/catppuccin/lua/catppuccin/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('catppuccin.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/catppuccin_latte/colors/catppuccin_latte.vim b/compiled/catppuccin_latte/colors/catppuccin_latte.vim deleted file mode 100644 index 8777d1e..0000000 --- a/compiled/catppuccin_latte/colors/catppuccin_latte.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local catppuccin_latte = require("catppuccin_latte") -catppuccin_latte.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/catppuccin_latte/lua/catppuccin_latte/init.lua b/compiled/catppuccin_latte/lua/catppuccin_latte/init.lua deleted file mode 100644 index f66886e..0000000 --- a/compiled/catppuccin_latte/lua/catppuccin_latte/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('catppuccin_latte.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'catppuccin_latte' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/catppuccin_latte/lua/catppuccin_latte/palette.lua b/compiled/catppuccin_latte/lua/catppuccin_latte/palette.lua deleted file mode 100644 index fea55e6..0000000 --- a/compiled/catppuccin_latte/lua/catppuccin_latte/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#4C4F69", - darker_black = "#e6e8ec", - black = "#EFF1F5", - black2 = "#e0e2e6", - one_bg = "#e4e6ea", - one_bg2 = "#d9dbdf", - one_bg3 = "#ced0d4", - grey = "#c3c5c9", - grey_fg = "#b9bbbf", - grey_fg2 = "#b0b2b6", - light_grey = "#a6a8ac", - red = "#D20F39", - baby_pink = "#DD7878", - pink = "#ea76cb", - line = "#d9dbdf", - green = "#40A02B", - vibrant_green = "#7eca9c", - nord_blue = "#7287FD", - blue = "#1e66f5", - yellow = "#df8e1d", - sun = "#dea95f", - purple = "#8839EF", - dark_purple = "#7c2de3", - teal = "#179299", - orange = "#FE640B", - cyan = "#04A5E5", - statusline_bg = "#e4e6ea", - lightbg = "#d9dbdf", - pmenu_bg = "#7287FD", - folder_bg = "#6C6C6C", - base00 = "#EFF1F5", - base01 = "#e4e6ea", - base02 = "#d9dbdf", - base03 = "#ced0d4", - base04 = "#c3c5c9", - base05 = "#4C4F69", - base06 = "#474a64", - base07 = "#41445e", - base08 = "#D20F39", - base09 = "#7c2de3", - base0A = "#df8e1d", - base0B = "#40A02B", - base0C = "#179299", - base0D = "#1e66f5", - base0E = "#8839EF", - base0F = "#62657f", -} - -return colors
\ No newline at end of file diff --git a/compiled/catppuccin_latte/lua/catppuccin_latte/theme.lua b/compiled/catppuccin_latte/lua/catppuccin_latte/theme.lua deleted file mode 100644 index 04e4d4f..0000000 --- a/compiled/catppuccin_latte/lua/catppuccin_latte/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('catppuccin_latte.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/chadracula/colors/chadracula.vim b/compiled/chadracula/colors/chadracula.vim deleted file mode 100644 index b342a2d..0000000 --- a/compiled/chadracula/colors/chadracula.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local chadracula = require("chadracula") -chadracula.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/chadracula/lua/chadracula/init.lua b/compiled/chadracula/lua/chadracula/init.lua deleted file mode 100644 index bae817c..0000000 --- a/compiled/chadracula/lua/chadracula/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('chadracula.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'chadracula' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/chadracula/lua/chadracula/palette.lua b/compiled/chadracula/lua/chadracula/palette.lua deleted file mode 100644 index 50a0e9b..0000000 --- a/compiled/chadracula/lua/chadracula/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#F8F8F2", - darker_black = "#222430", - black = "#282A36", - black2 = "#2d303e", - one_bg = "#373844", - one_bg2 = "#44475a", - one_bg3 = "#565761", - grey = "#5e5f69", - grey_fg = "#666771", - grey_fg2 = "#6e6f79", - light_grey = "#73747e", - red = "#ff7070", - baby_pink = "#ff86d3", - pink = "#FF79C6", - line = "#3c3d49", - green = "#50fa7b", - vibrant_green = "#5dff88", - nord_blue = "#8b9bcd", - blue = "#a1b1e3", - yellow = "#F1FA8C", - sun = "#FFFFA5", - purple = "#BD93F9", - dark_purple = "#BD93F9", - teal = "#92a2d4", - orange = "#FFB86C", - cyan = "#8BE9FD", - statusline_bg = "#2d2f3b", - lightbg = "#41434f", - pmenu_bg = "#b389ef", - folder_bg = "#BD93F9", - base00 = "#282936", - base01 = "#3a3c4e", - base02 = "#4d4f68", - base03 = "#626483", - base04 = "#62d6e8", - base05 = "#e9e9f4", - base06 = "#f1f2f8", - base07 = "#f7f7fb", - base08 = "#c197fd", - base09 = "#FFB86C", - base0A = "#62d6e8", - base0B = "#F1FA8C", - base0C = "#8BE9FD", - base0D = "#50fa7b", - base0E = "#ff86d3", - base0F = "#F8F8F2", -} - -return colors
\ No newline at end of file diff --git a/compiled/chadracula/lua/chadracula/theme.lua b/compiled/chadracula/lua/chadracula/theme.lua deleted file mode 100644 index c88d7e4..0000000 --- a/compiled/chadracula/lua/chadracula/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('chadracula.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/chadtain/colors/chadtain.vim b/compiled/chadtain/colors/chadtain.vim deleted file mode 100644 index 813e056..0000000 --- a/compiled/chadtain/colors/chadtain.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local chadtain = require("chadtain") -chadtain.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/chadtain/lua/chadtain/init.lua b/compiled/chadtain/lua/chadtain/init.lua deleted file mode 100644 index 437ba4f..0000000 --- a/compiled/chadtain/lua/chadtain/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('chadtain.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'chadtain' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/chadtain/lua/chadtain/palette.lua b/compiled/chadtain/lua/chadtain/palette.lua deleted file mode 100644 index 298929c..0000000 --- a/compiled/chadtain/lua/chadtain/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#b0b0b0", - darker_black = "#151b21", - black = "#1a2026", - black2 = "#20262c", - one_bg = "#242a30", - one_bg2 = "#292f35", - one_bg3 = "#2e343a", - grey = "#42484e", - grey_fg = "#474d53", - grey_fg2 = "#50565c", - light_grey = "#565c62", - red = "#ac8a8c", - baby_pink = "#de878f", - pink = "#e89199", - line = "#2d3339", - green = "#8aac8b", - vibrant_green = "#9ec49f", - blue = "#6b8bab", - nord_blue = "#7797b7", - yellow = "#c4c19e", - sun = "#aca98a", - purple = "#a39ec4", - dark_purple = "#8f8aac", - teal = "#7c9cbc", - orange = "#C9938A", - cyan = "#9aafe6", - statusline_bg = "#1e242a", - lightbg = "#2d3339", - pmenu_bg = "#8aac8b", - folder_bg = "#6b8bab", - base00 = "#1a2026", - base01 = "#242a30", - base02 = "#292f35", - base03 = "#2e343a", - base04 = "#42484e", - base05 = "#bebebe", - base06 = "#bbbbbb", - base07 = "#b0b0b0", - base08 = "#ac8a8c", - base09 = "#C9938A", - base0A = "#aca98a", - base0B = "#8aac8b", - base0C = "#8aabac", - base0D = "#7797b7", - base0E = "#948fb1", - base0F = "#ac8a8c", -} - -return colors
\ No newline at end of file diff --git a/compiled/chadtain/lua/chadtain/theme.lua b/compiled/chadtain/lua/chadtain/theme.lua deleted file mode 100644 index d7d2443..0000000 --- a/compiled/chadtain/lua/chadtain/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('chadtain.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/chocolate/colors/chocolate.vim b/compiled/chocolate/colors/chocolate.vim deleted file mode 100644 index 1bd9ccd..0000000 --- a/compiled/chocolate/colors/chocolate.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local chocolate = require("chocolate") -chocolate.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/chocolate/lua/chocolate/init.lua b/compiled/chocolate/lua/chocolate/init.lua deleted file mode 100644 index 1f90f1d..0000000 --- a/compiled/chocolate/lua/chocolate/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('chocolate.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'chocolate' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/chocolate/lua/chocolate/palette.lua b/compiled/chocolate/lua/chocolate/palette.lua deleted file mode 100644 index d497a6f..0000000 --- a/compiled/chocolate/lua/chocolate/palette.lua +++ /dev/null @@ -1,51 +0,0 @@ -local colors = { - white = "#cdc0ad", - darker_black = "#201d1c", - black = "#252221", - black2 = "#2b2827", - one_bg = "#2f2c2b", - one_bg2 = "#393635", - one_bg3 = "#43403f", - grey = "#4d4a49", - grey_fg = "#575453", - grey_fg2 = "#615e5d", - light_grey = "#6b6867", - red = "#c65f5f", - baby_pink = "#dc7575", - pink = "#d16a6a", - line = "#322f2e", - green = "#8ca589", - vibrant_green = "#95ae92", - nord_blue = "#728797", - blue = "#7d92a2", - yellow = "#d9b27c", - sun = "#e1ba84", - purple = "#998396", - dark_purple = "#917b8e", - teal = "#749689", - orange = "#d08b65", - cyan = "#829e9b", - statusline_bg = "#292625", - lightbg = "#353231", - pmenu_bg = "#859e82", - folder_bg = "#768b9b", - beige = "#ab9382", - base00 = "#252221", - base01 = "#2f2c2b", - base02 = "#393635", - base03 = "#43403f", - base04 = "#4d4a49", - base05 = "#c8bAA4", - base06 = "#beae94", - base07 = "#cdc0ad", - base08 = "#c65f5f", - base09 = "#d08b65", - base0A = "#d9b27c", - base0B = "#8ca589", - base0C = "#998396", - base0D = "#7d92a2", - base0E = "#c65f5f", - base0F = "#ab9382", -} - -return colors
\ No newline at end of file diff --git a/compiled/chocolate/lua/chocolate/theme.lua b/compiled/chocolate/lua/chocolate/theme.lua deleted file mode 100644 index ed09f53..0000000 --- a/compiled/chocolate/lua/chocolate/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('chocolate.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/decay/colors/decay.vim b/compiled/decay/colors/decay.vim deleted file mode 100644 index ca31d5b..0000000 --- a/compiled/decay/colors/decay.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local decay = require("decay") -decay.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/decay/lua/decay/init.lua b/compiled/decay/lua/decay/init.lua deleted file mode 100644 index c171a3a..0000000 --- a/compiled/decay/lua/decay/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('decay.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'decay' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/decay/lua/decay/palette.lua b/compiled/decay/lua/decay/palette.lua deleted file mode 100644 index 83d1fb3..0000000 --- a/compiled/decay/lua/decay/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#dee1e6", - darker_black = "#111519", - black = "#171B20", - black2 = "#1e2227", - one_bg = "#262a2f", - one_bg2 = "#2f3338", - one_bg3 = "#373b40", - grey = "#41454a", - grey_fg = "#494d52", - grey_fg2 = "#505459", - light_grey = "#5a5e63", - red = "#e05f65", - baby_pink = "#ea696f", - pink = "#c68aee", - line = "#282d35", - green = "#78DBA9", - vibrant_green = "#87eab8", - blue = "#70a5eb", - nord_blue = "#74bee9", - yellow = "#f1cf8a", - sun = "#e7c580", - purple = "#c68aee", - dark_purple = "#b77bdf", - teal = "#7ddac5", - orange = "#e9a180", - cyan = "#74bee9", - statusline_bg = "#1c2026", - lightbg = "#2b3038", - pmenu_bg = "#7ddac5", - folder_bg = "#78DBA9", - base00 = "#171B20", - base01 = "#21262e", - base02 = "#242931", - base03 = "#485263", - base04 = "#485263", - base05 = "#b6beca", - base06 = "#dee1e6", - base07 = "#dee1e6", - base08 = "#e05f65", - base09 = "#e9a180", - base0A = "#f1cf8a", - base0B = "#78DBA9", - base0C = "#9cd1ff", - base0D = "#74bee9", - base0E = "#c68aee", - base0F = "#e05f65", -} - -return colors
\ No newline at end of file diff --git a/compiled/decay/lua/decay/theme.lua b/compiled/decay/lua/decay/theme.lua deleted file mode 100644 index b96ad38..0000000 --- a/compiled/decay/lua/decay/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('decay.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/doomchad/colors/doomchad.vim b/compiled/doomchad/colors/doomchad.vim deleted file mode 100644 index 5a15458..0000000 --- a/compiled/doomchad/colors/doomchad.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local doomchad = require("doomchad") -doomchad.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/doomchad/lua/doomchad/init.lua b/compiled/doomchad/lua/doomchad/init.lua deleted file mode 100644 index ac80bc3..0000000 --- a/compiled/doomchad/lua/doomchad/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('doomchad.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'doomchad' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/doomchad/lua/doomchad/palette.lua b/compiled/doomchad/lua/doomchad/palette.lua deleted file mode 100644 index cdc626d..0000000 --- a/compiled/doomchad/lua/doomchad/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#bbc2cf", - darker_black = "#22262e", - black = "#282c34", - black2 = "#2e323a", - one_bg = "#32363e", - one_bg2 = "#3c4048", - one_bg3 = "#41454d", - grey = "#494d55", - grey_fg = "#53575f", - grey_fg2 = "#5d6169", - light_grey = "#676b73", - red = "#ff6b5a", - baby_pink = "#ff7665", - pink = "#ff75a0", - line = "#3b3f47", - green = "#98be65", - vibrant_green = "#a9cf76", - nord_blue = "#47a5e5", - blue = "#61afef", - yellow = "#ECBE7B", - sun = "#f2c481", - purple = "#dc8ef3", - dark_purple = "#c678dd", - teal = "#4db5bd", - orange = "#ea9558", - cyan = "#46D9FF", - statusline_bg = "#2d3139", - lightbg = "#3a3e46", - pmenu_bg = "#98be65", - folder_bg = "#51afef", - base00 = "#282c34", - base01 = "#32363e", - base02 = "#3c4048", - base03 = "#4e525a", - base04 = "#5a5e66", - base05 = "#a7aebb", - base06 = "#b3bac7", - base07 = "#bbc2cf", - base08 = "#ff6c6b", - base09 = "#ea9558", - base0A = "#ECBE7B", - base0B = "#98be65", - base0C = "#66c4ff", - base0D = "#48a6e6", - base0E = "#9c94d4", - base0F = "#c85a50", -} - -return colors
\ No newline at end of file diff --git a/compiled/doomchad/lua/doomchad/theme.lua b/compiled/doomchad/lua/doomchad/theme.lua deleted file mode 100644 index fbbf722..0000000 --- a/compiled/doomchad/lua/doomchad/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('doomchad.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/everforest/colors/everforest.vim b/compiled/everforest/colors/everforest.vim deleted file mode 100644 index 936a499..0000000 --- a/compiled/everforest/colors/everforest.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local everforest = require("everforest") -everforest.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/everforest/lua/everforest/init.lua b/compiled/everforest/lua/everforest/init.lua deleted file mode 100644 index b6a1a92..0000000 --- a/compiled/everforest/lua/everforest/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('everforest.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'everforest' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/everforest/lua/everforest/palette.lua b/compiled/everforest/lua/everforest/palette.lua deleted file mode 100644 index fdd180d..0000000 --- a/compiled/everforest/lua/everforest/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#D3C6AA", - darker_black = "#272f35", - black = "#2b3339", - black2 = "#323a40", - one_bg = "#363e44", - one_bg2 = "#363e44", - one_bg3 = "#3a4248", - grey = "#4e565c", - grey_fg = "#545c62", - grey_fg2 = "#626a70", - light_grey = "#656d73", - red = "#e67e80", - baby_pink = "#ce8196", - pink = "#ff75a0", - line = "#3a4248", - green = "#83c092", - vibrant_green = "#a7c080", - nord_blue = "#78b4ac", - blue = "#7393b3", - yellow = "#dbbc7f", - sun = "#d1b171", - purple = "#ecafcc", - dark_purple = "#d699b6", - teal = "#69a59d", - orange = "#e69875", - cyan = "#95d1c9", - statusline_bg = "#2e363c", - lightbg = "#3d454b", - pmenu_bg = "#83c092", - folder_bg = "#7393b3", - base00 = "#2b3339", - base01 = "#323c41", - base02 = "#3a4248", - base03 = "#424a50", - base04 = "#4a5258", - base05 = "#d3c6aa", - base06 = "#ddd0b4", - base07 = "#e7dabe", - base08 = "#7fbbb3", - base09 = "#d699b6", - base0A = "#83c092", - base0B = "#dbbc7f", - base0C = "#e69875", - base0D = "#a7c080", - base0E = "#e67e80", - base0F = "#d699b6", -} - -return colors
\ No newline at end of file diff --git a/compiled/everforest/lua/everforest/theme.lua b/compiled/everforest/lua/everforest/theme.lua deleted file mode 100644 index a8fdee9..0000000 --- a/compiled/everforest/lua/everforest/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('everforest.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/everforest_light/colors/everforest_light.vim b/compiled/everforest_light/colors/everforest_light.vim deleted file mode 100644 index b077196..0000000 --- a/compiled/everforest_light/colors/everforest_light.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local everforest_light = require("everforest_light") -everforest_light.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/everforest_light/lua/everforest_light/init.lua b/compiled/everforest_light/lua/everforest_light/init.lua deleted file mode 100644 index 88dcfce..0000000 --- a/compiled/everforest_light/lua/everforest_light/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('everforest_light.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'everforest_light' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/everforest_light/lua/everforest_light/palette.lua b/compiled/everforest_light/lua/everforest_light/palette.lua deleted file mode 100644 index 2868dce..0000000 --- a/compiled/everforest_light/lua/everforest_light/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#272f35", - darker_black = "#f5efde", - black = "#fff9e8", - black2 = "#ebe5d4", - one_bg = "#c6c2aa", - one_bg2 = "#b6b29a", - one_bg3 = "#a6a28a", - grey = "#a6b0a0", - grey_fg = "#939f91", - grey_fg2 = "#829181", - light_grey = "#798878", - red = "#c85552", - baby_pink = "#ce8196", - pink = "#ef6590", - line = "#e8e2d1", - green = "#5da111", - vibrant_green = "#87a060", - nord_blue = "#656c5f", - blue = "#3a94c5", - yellow = "#dfa000", - sun = "#d1b171", - purple = "#b67996", - dark_purple = "#966986", - teal = "#69a59d", - orange = "#F7954F", - cyan = "#7521e9", - statusline_bg = "#ede7d6", - lightbg = "#d3cdbc", - pmenu_bg = "#5f9b93", - folder_bg = "#747b6e", - base00 = "#fff9e8", - base01 = "#f6f0df", - base02 = "#ede7d6", - base03 = "#e5dfce", - base04 = "#ddd7c6", - base05 = "#495157", - base06 = "#3b4349", - base07 = "#272f35", - base08 = "#5f9b93", - base09 = "#b67996", - base0A = "#8da101", - base0B = "#d59600", - base0C = "#ef615e", - base0D = "#87a060", - base0E = "#c85552", - base0F = "#c85552", -} - -return colors
\ No newline at end of file diff --git a/compiled/everforest_light/lua/everforest_light/theme.lua b/compiled/everforest_light/lua/everforest_light/theme.lua deleted file mode 100644 index ff7b119..0000000 --- a/compiled/everforest_light/lua/everforest_light/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('everforest_light.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/gatekeeper/colors/gatekeeper.vim b/compiled/gatekeeper/colors/gatekeeper.vim deleted file mode 100644 index f436b3c..0000000 --- a/compiled/gatekeeper/colors/gatekeeper.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local gatekeeper = require("gatekeeper") -gatekeeper.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/gatekeeper/lua/gatekeeper/init.lua b/compiled/gatekeeper/lua/gatekeeper/init.lua deleted file mode 100644 index 74e922b..0000000 --- a/compiled/gatekeeper/lua/gatekeeper/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('gatekeeper.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'gatekeeper' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/gatekeeper/lua/gatekeeper/palette.lua b/compiled/gatekeeper/lua/gatekeeper/palette.lua deleted file mode 100644 index 390d3f8..0000000 --- a/compiled/gatekeeper/lua/gatekeeper/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#cccdd1", - darker_black = "#0a0a0a", - black = "#101010", - black2 = "#181818", - one_bg = "#1e1e1e", - one_bg2 = "#252525", - one_bg3 = "#2c2c2c", - grey = "#363636", - grey_fg = "#3d3d3d", - grey_fg2 = "#454545", - light_grey = "#4d4d4d", - red = "#ff1a67", - baby_pink = "#ff86b7", - pink = "#ff77a8", - line = "#2c2c2c", - green = "#00e756", - vibrant_green = "#10f766", - blue = "#29adff", - nord_blue = "#5c6ab2", - yellow = "#fff024", - sun = "#fff82c", - purple = "#a79ac0", - dark_purple = "#998cb2", - teal = "#0b925c", - orange = "#ffa300", - cyan = "#29adff", - statusline_bg = "#181818", - lightbg = "#272727", - pmenu_bg = "#5c6ab2", - folder_bg = "#29adff", - base00 = "#101010", - base01 = "#171717", - base02 = "#1e1e1e", - base03 = "#252525", - base04 = "#2c2c2c", - base05 = "#d8d9dd", - base06 = "#d2d3d7", - base07 = "#cccdd1", - base08 = "#ffb20f", - base09 = "#ff004d", - base0A = "#be620a", - base0B = "#00e756", - base0C = "#29adff", - base0D = "#c54bcf", - base0E = "#ff4394", - base0F = "#ffccaa", -} - -return colors
\ No newline at end of file diff --git a/compiled/gatekeeper/lua/gatekeeper/theme.lua b/compiled/gatekeeper/lua/gatekeeper/theme.lua deleted file mode 100644 index a181579..0000000 --- a/compiled/gatekeeper/lua/gatekeeper/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('gatekeeper.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/gruvbox/colors/gruvbox.vim b/compiled/gruvbox/colors/gruvbox.vim deleted file mode 100644 index 0556492..0000000 --- a/compiled/gruvbox/colors/gruvbox.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local gruvbox = require("gruvbox") -gruvbox.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/gruvbox/lua/gruvbox/init.lua b/compiled/gruvbox/lua/gruvbox/init.lua deleted file mode 100644 index bd5985f..0000000 --- a/compiled/gruvbox/lua/gruvbox/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('gruvbox.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'gruvbox' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/gruvbox/lua/gruvbox/palette.lua b/compiled/gruvbox/lua/gruvbox/palette.lua deleted file mode 100644 index fe0561f..0000000 --- a/compiled/gruvbox/lua/gruvbox/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#ebdbb2", - darker_black = "#232323", - black = "#282828", - black2 = "#2e2e2e", - one_bg = "#353535", - one_bg2 = "#3f3f3f", - one_bg3 = "#444444", - grey = "#4b4b4b", - grey_fg = "#4e4e4e", - grey_fg2 = "#505050", - light_grey = "#656565", - red = "#fb4934", - baby_pink = "#cc241d", - pink = "#ff75a0", - line = "#36393a", - green = "#b8bb26", - vibrant_green = "#a9b665", - nord_blue = "#83a598", - blue = "#458588", - yellow = "#d79921", - sun = "#fabd2f", - purple = "#b4bbc8", - dark_purple = "#d3869b", - teal = "#749689", - orange = "#e78a4e", - cyan = "#82b3a8", - statusline_bg = "#2c2c2c", - lightbg = "#3d3d3d", - pmenu_bg = "#83a598", - folder_bg = "#749689", - base00 = "#282828", - base01 = "#3c3836", - base02 = "#423e3c", - base03 = "#484442", - base04 = "#bdae93", - base05 = "#d5c4a1", - base06 = "#ebdbb2", - base07 = "#fbf1c7", - base08 = "#fb4934", - base09 = "#fe8019", - base0A = "#fabd2f", - base0B = "#b8bb26", - base0C = "#8ec07c", - base0D = "#83a598", - base0E = "#d3869b", - base0F = "#d65d0e", -} - -return colors
\ No newline at end of file diff --git a/compiled/gruvbox/lua/gruvbox/theme.lua b/compiled/gruvbox/lua/gruvbox/theme.lua deleted file mode 100644 index d988c45..0000000 --- a/compiled/gruvbox/lua/gruvbox/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('gruvbox.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/gruvbox_light/colors/gruvbox_light.vim b/compiled/gruvbox_light/colors/gruvbox_light.vim deleted file mode 100644 index f8be7f4..0000000 --- a/compiled/gruvbox_light/colors/gruvbox_light.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local gruvbox_light = require("gruvbox_light") -gruvbox_light.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/gruvbox_light/lua/gruvbox_light/init.lua b/compiled/gruvbox_light/lua/gruvbox_light/init.lua deleted file mode 100644 index 5ae5ec4..0000000 --- a/compiled/gruvbox_light/lua/gruvbox_light/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('gruvbox_light.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'gruvbox_light' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/gruvbox_light/lua/gruvbox_light/palette.lua b/compiled/gruvbox_light/lua/gruvbox_light/palette.lua deleted file mode 100644 index 2c3a7e9..0000000 --- a/compiled/gruvbox_light/lua/gruvbox_light/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#504945", - darker_black = "#e8dbb2", - black = "#F2E5BC", - black2 = "#e3d6ad", - one_bg = "#e5d8af", - one_bg2 = "#d8cba2", - one_bg3 = "#cabd94", - grey = "#c0b38a", - grey_fg = "#b6a980", - grey_fg2 = "#ac9f76", - light_grey = "#a2956c", - red = "#d65d0e", - baby_pink = "#af3a03", - pink = "#9d0006", - line = "#ded1a8", - green = "#79740e", - vibrant_green = "#7f7a14", - nord_blue = "#7b9d90", - blue = "#458588", - yellow = "#d79921", - sun = "#dd9f27", - purple = "#8f3f71", - dark_purple = "#853567", - teal = "#749689", - orange = "#b57614", - cyan = "#82b3a8", - statusline_bg = "#e9dcb3", - lightbg = "#ddd0a7", - pmenu_bg = "#739588", - folder_bg = "#746d69", - base00 = "#F2E5BC", - base01 = "#e5d8af", - base02 = "#d8cba2", - base03 = "#cabd94", - base04 = "#c0b38a", - base05 = "#504945", - base06 = "#3c3836", - base07 = "#282828", - base08 = "#9d0006", - base09 = "#af3a03", - base0A = "#b57614", - base0B = "#79740e", - base0C = "#427b58", - base0D = "#076678", - base0E = "#8f3f71", - base0F = "#d65d0e", -} - -return colors
\ No newline at end of file diff --git a/compiled/gruvbox_light/lua/gruvbox_light/theme.lua b/compiled/gruvbox_light/lua/gruvbox_light/theme.lua deleted file mode 100644 index ba1ceb8..0000000 --- a/compiled/gruvbox_light/lua/gruvbox_light/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('gruvbox_light.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/gruvchad/colors/gruvchad.vim b/compiled/gruvchad/colors/gruvchad.vim deleted file mode 100644 index 3c9e3d6..0000000 --- a/compiled/gruvchad/colors/gruvchad.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local gruvchad = require("gruvchad") -gruvchad.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/gruvchad/lua/gruvchad/init.lua b/compiled/gruvchad/lua/gruvchad/init.lua deleted file mode 100644 index bae3f11..0000000 --- a/compiled/gruvchad/lua/gruvchad/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('gruvchad.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'gruvchad' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/gruvchad/lua/gruvchad/palette.lua b/compiled/gruvchad/lua/gruvchad/palette.lua deleted file mode 100644 index 810168f..0000000 --- a/compiled/gruvchad/lua/gruvchad/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#c7b89d", - darker_black = "#1a1d1e", - black = "#1e2122", - black2 = "#242728", - one_bg = "#282b2c", - one_bg2 = "#393c3d", - one_bg3 = "#404344", - grey = "#484b4c", - grey_fg = "#575a5b", - grey_fg2 = "#545758", - light_grey = "#606364", - red = "#ec6b64", - baby_pink = "#ce8196", - pink = "#ff75a0", - line = "#323536", - green = "#89b482", - vibrant_green = "#a9b665", - nord_blue = "#6f8faf", - blue = "#6d8dad", - yellow = "#d6b676", - sun = "#d1b171", - purple = "#9385b4", - dark_purple = "#887aa9", - teal = "#749689", - orange = "#e78a4e", - cyan = "#82b3a8", - statusline_bg = "#222526", - lightbg = "#2d3031", - pmenu_bg = "#89b482", - folder_bg = "#6d8dad", - base0A = "#e0c080", - base04 = "#d4be98", - base07 = "#c7b89d", - base05 = "#c0b196", - base0E = "#d3869b", - base0D = "#7daea3", - base0C = "#86b17f", - base0B = "#a9b665", - base02 = "#36393a", - base0F = "#d65d0e", - base03 = "#404344", - base08 = "#ec6b64", - base01 = "#2c2f30", - base00 = "#1e2122", - base09 = "#e78a4e", - base06 = "#c3b499", -} - -return colors
\ No newline at end of file diff --git a/compiled/gruvchad/lua/gruvchad/theme.lua b/compiled/gruvchad/lua/gruvchad/theme.lua deleted file mode 100644 index d0d7cd4..0000000 --- a/compiled/gruvchad/lua/gruvchad/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('gruvchad.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/jellybeans/colors/jellybeans.vim b/compiled/jellybeans/colors/jellybeans.vim deleted file mode 100644 index a9f35e3..0000000 --- a/compiled/jellybeans/colors/jellybeans.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local jellybeans = require("jellybeans") -jellybeans.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/jellybeans/lua/jellybeans/init.lua b/compiled/jellybeans/lua/jellybeans/init.lua deleted file mode 100644 index fbc7d88..0000000 --- a/compiled/jellybeans/lua/jellybeans/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('jellybeans.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'jellybeans' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/jellybeans/lua/jellybeans/palette.lua b/compiled/jellybeans/lua/jellybeans/palette.lua deleted file mode 100644 index 6173c68..0000000 --- a/compiled/jellybeans/lua/jellybeans/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#e8e8d3", - darker_black = "#101010", - black = "#151515", - black2 = "#1c1c1c", - one_bg = "#252525", - one_bg2 = "#2e2e2e", - one_bg3 = "#3a3a3a", - grey = "#424242", - grey_fg = "#474747", - grey_fg2 = "#4c4c4c", - light_grey = "#525252", - red = "#cf6a4c", - baby_pink = "#da7557", - pink = "#f0a0c0", - line = "#2d2d2d", - green = "#99ad6a", - vibrant_green = "#c2cea6", - nord_blue = "#768cb4", - blue = "#8197bf", - yellow = "#fad07a", - sun = "#ffb964", - purple = "#ea94ea", - dark_purple = "#e58fe5", - teal = "#668799", - orange = "#e78a4e", - cyan = "#8fbfdc", - statusline_bg = "#191919", - lightbg = "#2c2c2c", - pmenu_bg = "#8197bf", - folder_bg = "#8197bf", - base00 = "#151515", - base01 = "#2e2e2e", - base02 = "#3a3a3a", - base03 = "#424242", - base04 = "#474747", - base05 = "#d9d9c4", - base06 = "#dedec9", - base07 = "#f1f1e5", - base08 = "#dd785a", - base09 = "#c99f4a", - base0A = "#e1b655", - base0B = "#99ad6a", - base0C = "#7187af", - base0D = "#8fa5cd", - base0E = "#e18be1", - base0F = "#cf6a4c", -} - -return colors
\ No newline at end of file diff --git a/compiled/jellybeans/lua/jellybeans/theme.lua b/compiled/jellybeans/lua/jellybeans/theme.lua deleted file mode 100644 index 0217719..0000000 --- a/compiled/jellybeans/lua/jellybeans/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('jellybeans.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/kanagawa/colors/kanagawa.vim b/compiled/kanagawa/colors/kanagawa.vim deleted file mode 100644 index 72a352a..0000000 --- a/compiled/kanagawa/colors/kanagawa.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local kanagawa = require("kanagawa") -kanagawa.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/kanagawa/lua/kanagawa/init.lua b/compiled/kanagawa/lua/kanagawa/init.lua deleted file mode 100644 index eb9ea89..0000000 --- a/compiled/kanagawa/lua/kanagawa/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('kanagawa.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'kanagawa' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/kanagawa/lua/kanagawa/palette.lua b/compiled/kanagawa/lua/kanagawa/palette.lua deleted file mode 100644 index a8e8732..0000000 --- a/compiled/kanagawa/lua/kanagawa/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#DCD7BA", - darker_black = "#191922", - black = "#1F1F28", - black2 = "#25252e", - one_bg = "#272730", - one_bg2 = "#2f2f38", - one_bg3 = "#363646", - grey = "#43434c", - grey_fg = "#4c4c55", - grey_fg2 = "#53535c", - light_grey = "#5c5c65", - red = "#d8616b", - baby_pink = "#D27E99", - pink = "#c8748f", - line = "#31313a", - green = "#98BB6C", - vibrant_green = "#a3c677", - nord_blue = "#7E9CD8", - blue = "#7FB4CA", - yellow = "#FF9E3B", - sun = "#FFA066", - purple = "#a48ec7", - dark_purple = "#9c86bf", - teal = "#7AA89F", - orange = "#fa9b61", - cyan = "#A3D4D5", - statusline_bg = "#24242d", - lightbg = "#33333c", - pmenu_bg = "#a48ec7", - folder_bg = "#7E9CD8", - base00 = "#1f1f28", - base01 = "#2a2a37", - base02 = "#223249", - base03 = "#363646", - base04 = "#4c4c55", - base05 = "#c8c3a6", - base06 = "#d2cdb0", - base07 = "#DCD7BA", - base08 = "#d8616b", - base09 = "#ffa066", - base0A = "#dca561", - base0B = "#98bb6c", - base0C = "#7fb4ca", - base0D = "#7e9cd8", - base0E = "#9c86bf", - base0F = "#d8616b", -} - -return colors
\ No newline at end of file diff --git a/compiled/kanagawa/lua/kanagawa/theme.lua b/compiled/kanagawa/lua/kanagawa/theme.lua deleted file mode 100644 index 86af241..0000000 --- a/compiled/kanagawa/lua/kanagawa/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('kanagawa.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/monekai/colors/monekai.vim b/compiled/monekai/colors/monekai.vim deleted file mode 100644 index c98ee21..0000000 --- a/compiled/monekai/colors/monekai.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local monekai = require("monekai") -monekai.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/monekai/lua/monekai/init.lua b/compiled/monekai/lua/monekai/init.lua deleted file mode 100644 index e2c5368..0000000 --- a/compiled/monekai/lua/monekai/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('monekai.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'monekai' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/monekai/lua/monekai/palette.lua b/compiled/monekai/lua/monekai/palette.lua deleted file mode 100644 index 6f350e6..0000000 --- a/compiled/monekai/lua/monekai/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#bbc2cf", - darker_black = "#1f222b", - black = "#242730", - black2 = "#292c35", - one_bg = "#2e313a", - one_bg2 = "#373a43", - one_bg3 = "#3f424b", - grey = "#494c55", - grey_fg = "#52555e", - grey_fg2 = "#5b5e67", - light_grey = "#63666f", - red = "#e36d76", - baby_pink = "#f98385", - pink = "#f36d76", - line = "#363942", - green = "#96c367", - vibrant_green = "#99c366", - nord_blue = "#81A1C1", - blue = "#51afef", - yellow = "#e6c181", - sun = "#fce668", - purple = "#c885d7", - dark_purple = "#b26fc1", - teal = "#34bfd0", - orange = "#d39467", - cyan = "#41afef", - statusline_bg = "#292c35", - lightbg = "#3d4049", - pmenu_bg = "#99c366", - folder_bg = "#61afef", - base00 = "#242730", - base01 = "#2a2e38", - base02 = "#484854", - base03 = "#545862", - base04 = "#5b5e67", - base05 = "#afb6c3", - base06 = "#b5bcc9", - base07 = "#bbc2cf", - base08 = "#d39467", - base09 = "#b3a5d4", - base0A = "#61afef", - base0B = "#e6c181", - base0C = "#61afef", - base0D = "#96c376", - base0E = "#e36d76", - base0F = "#e36d76", -} - -return colors
\ No newline at end of file diff --git a/compiled/monekai/lua/monekai/theme.lua b/compiled/monekai/lua/monekai/theme.lua deleted file mode 100644 index 14beaa6..0000000 --- a/compiled/monekai/lua/monekai/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('monekai.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/mountain/colors/mountain.vim b/compiled/mountain/colors/mountain.vim deleted file mode 100644 index c20644c..0000000 --- a/compiled/mountain/colors/mountain.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local mountain = require("mountain") -mountain.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/mountain/lua/mountain/init.lua b/compiled/mountain/lua/mountain/init.lua deleted file mode 100644 index 240542d..0000000 --- a/compiled/mountain/lua/mountain/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('mountain.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'mountain' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/mountain/lua/mountain/palette.lua b/compiled/mountain/lua/mountain/palette.lua deleted file mode 100644 index 0b672e3..0000000 --- a/compiled/mountain/lua/mountain/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#F0f0f0", - darker_black = "#090909", - black = "#0f0f0f", - black2 = "#181818", - one_bg = "#191919", - one_bg2 = "#222222", - one_bg3 = "#2a2a2a", - grey = "#373737", - grey_fg = "#414141", - grey_fg2 = "#4b4b4b", - light_grey = "#535353", - red = "#ac8a8c", - baby_pink = "#bb999b", - pink = "#AC8AAC", - line = "#242424", - green = "#8aac8b", - vibrant_green = "#99bb9a", - blue = "#9691b3", - nord_blue = "#8F8AAC", - yellow = "#ACA98A", - sun = "#b3b091", - purple = "#C49EC4", - dark_purple = "#b58fb5", - teal = "#8fb4b5", - orange = "#9d9a7b", - cyan = "#9EC3C4", - statusline_bg = "#131313", - lightbg = "#292929", - pmenu_bg = "#8aac8b", - folder_bg = "#8F8AAC", - base00 = "#0f0f0f", - base01 = "#151515", - base02 = "#191919", - base03 = "#222222", - base04 = "#535353", - base05 = "#d8d8d8", - base06 = "#e6e6e6", - base07 = "#f0f0f0", - base08 = "#b18f91", - base09 = "#d8bb92", - base0A = "#b1ae8f", - base0B = "#8aac8b", - base0C = "#91b2b3", - base0D = "#a5a0c2", - base0E = "#ac8aac", - base0F = "#b39193", -} - -return colors
\ No newline at end of file diff --git a/compiled/mountain/lua/mountain/theme.lua b/compiled/mountain/lua/mountain/theme.lua deleted file mode 100644 index 27a2ba8..0000000 --- a/compiled/mountain/lua/mountain/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('mountain.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/nightfox/colors/nightfox.vim b/compiled/nightfox/colors/nightfox.vim deleted file mode 100644 index cd0b5e9..0000000 --- a/compiled/nightfox/colors/nightfox.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local nightfox = require("nightfox") -nightfox.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/nightfox/lua/nightfox/init.lua b/compiled/nightfox/lua/nightfox/init.lua deleted file mode 100644 index 12348e8..0000000 --- a/compiled/nightfox/lua/nightfox/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('nightfox.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'nightfox' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/nightfox/lua/nightfox/palette.lua b/compiled/nightfox/lua/nightfox/palette.lua deleted file mode 100644 index fab2b9d..0000000 --- a/compiled/nightfox/lua/nightfox/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#cdcecf", - darker_black = "#121c29", - black = "#192330", - black2 = "#202a37", - one_bg = "#252f3c", - one_bg2 = "#313b48", - one_bg3 = "#3d4754", - grey = "#495360", - grey_fg = "#535d6a", - grey_fg2 = "#5c6673", - light_grey = "#646e7b", - red = "#c94f6d", - baby_pink = "#e26886", - pink = "#d85e7c", - line = "#2a3441", - green = "#8ebaa4", - vibrant_green = "#6ad4d6", - blue = "#719cd6", - nord_blue = "#86abdc", - yellow = "#dbc074", - sun = "#e0c989", - purple = "#baa1e2", - dark_purple = "#9d79d6", - teal = "#5cc6c8", - orange = "#fe9373", - cyan = "#8be5e7", - statusline_bg = "#202a37", - lightbg = "#313b48", - pmenu_bg = "#719cd6", - folder_bg = "#719cd6", - base00 = "#192330", - base01 = "#252f3c", - base02 = "#313b48", - base03 = "#3d4754", - base04 = "#495360", - base05 = "#c0c8d5", - base06 = "#c7cfdc", - base07 = "#ced6e3", - base08 = "#e26886", - base09 = "#fe9373", - base0A = "#dbc074", - base0B = "#8ebaa4", - base0C = "#7ad4d6", - base0D = "#86abdc", - base0E = "#9d79d6", - base0F = "#d85e7c", -} - -return colors
\ No newline at end of file diff --git a/compiled/nightfox/lua/nightfox/theme.lua b/compiled/nightfox/lua/nightfox/theme.lua deleted file mode 100644 index d81ab87..0000000 --- a/compiled/nightfox/lua/nightfox/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('nightfox.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/nightlamp/colors/nightlamp.vim b/compiled/nightlamp/colors/nightlamp.vim deleted file mode 100644 index cfdd659..0000000 --- a/compiled/nightlamp/colors/nightlamp.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local nightlamp = require("nightlamp") -nightlamp.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/nightlamp/lua/nightlamp/init.lua b/compiled/nightlamp/lua/nightlamp/init.lua deleted file mode 100644 index 78afb8c..0000000 --- a/compiled/nightlamp/lua/nightlamp/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('nightlamp.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'nightlamp' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/nightlamp/lua/nightlamp/palette.lua b/compiled/nightlamp/lua/nightlamp/palette.lua deleted file mode 100644 index 95458b3..0000000 --- a/compiled/nightlamp/lua/nightlamp/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#e0d6bd", - darker_black = "#13141a", - black = "#18191f", - black2 = "#202127", - one_bg = "#27282e", - one_bg2 = "#2d2e34", - one_bg3 = "#33343a", - grey = "#3d3e44", - grey_fg = "#48494f", - grey_fg2 = "#4d4e54", - light_grey = "#55565c", - red = "#a67476", - baby_pink = "#d6b3bd", - pink = "#c99aa7", - line = "#313238", - green = "#8aa387", - vibrant_green = "#94ad91", - nord_blue = "#8d9bb3", - blue = "#5a6986", - yellow = "#ccb89c", - sun = "#deb88a", - purple = "#b8aad9", - dark_purple = "#a99bca", - teal = "#7aacaa", - orange = "#cd9672", - cyan = "#90a0a0", - statusline_bg = "#1d1e24", - lightbg = "#2b2c32", - pmenu_bg = "#b58385", - folder_bg = "#90a0a0", - base00 = "#18191f", - base01 = "#222329", - base02 = "#2c2d33", - base03 = "#3c3d43", - base04 = "#48494f", - base05 = "#b8af9e", - base06 = "#cbc0ab", - base07 = "#e0d6bd", - base08 = "#b8aad9", - base09 = "#cd9672", - base0A = "#ccb89c", - base0B = "#8aa387", - base0C = "#7aacaa", - base0D = "#b58385", - base0E = "#8e9cb4", - base0F = "#90a0a0", -} - -return colors
\ No newline at end of file diff --git a/compiled/nightlamp/lua/nightlamp/theme.lua b/compiled/nightlamp/lua/nightlamp/theme.lua deleted file mode 100644 index 430cc0a..0000000 --- a/compiled/nightlamp/lua/nightlamp/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('nightlamp.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/nightowl/colors/nightowl.vim b/compiled/nightowl/colors/nightowl.vim deleted file mode 100644 index 941dc89..0000000 --- a/compiled/nightowl/colors/nightowl.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local nightowl = require("nightowl") -nightowl.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/nightowl/lua/nightowl/init.lua b/compiled/nightowl/lua/nightowl/init.lua deleted file mode 100644 index a5caec6..0000000 --- a/compiled/nightowl/lua/nightowl/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('nightowl.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'nightowl' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/nightowl/lua/nightowl/palette.lua b/compiled/nightowl/lua/nightowl/palette.lua deleted file mode 100644 index 321397a..0000000 --- a/compiled/nightowl/lua/nightowl/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#d6deeb", - darker_black = "#010f20", - black = "#011627", - black2 = "#091e2f", - one_bg = "#112637", - one_bg2 = "#1b3041", - one_bg3 = "#253a4b", - grey = "#2c4152", - grey_fg = "#34495a", - grey_fg2 = "#3c5162", - light_grey = "#495e6f", - red = "#f78c6c", - baby_pink = "#ff6cca", - pink = "#fa58b6", - line = "#182d3e", - green = "#29E68E", - vibrant_green = "#22da6e", - blue = "#82aaff", - nord_blue = "#78a0f5", - yellow = "#ffcb8b", - sun = "#ffe9a9", - purple = "#c792ea", - dark_purple = "#a974cc", - teal = "#96CEB4", - orange = "#FFAD60", - cyan = "#aad2ff", - statusline_bg = "#051a2b", - lightbg = "#1a2f40", - pmenu_bg = "#82aaff", - folder_bg = "#82aaff", - base00 = "#011627", - base01 = "#0c2132", - base02 = "#172c3d", - base03 = "#223748", - base04 = "#2c4152", - base05 = "#ced6e3", - base06 = "#d6deeb", - base07 = "#feffff", - base08 = "#ecc48d", - base09 = "#f78c6c", - base0A = "#c792ea", - base0B = "#29E68E", - base0C = "#aad2ff", - base0D = "#82aaff", - base0E = "#c792ea", - base0F = "#f78c6c", -} - -return colors
\ No newline at end of file diff --git a/compiled/nightowl/lua/nightowl/theme.lua b/compiled/nightowl/lua/nightowl/theme.lua deleted file mode 100644 index b3a1fc5..0000000 --- a/compiled/nightowl/lua/nightowl/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('nightowl.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/nord/colors/nord.vim b/compiled/nord/colors/nord.vim deleted file mode 100644 index 2825504..0000000 --- a/compiled/nord/colors/nord.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local nord = require("nord") -nord.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/nord/lua/nord/init.lua b/compiled/nord/lua/nord/init.lua deleted file mode 100644 index 6eaf5cd..0000000 --- a/compiled/nord/lua/nord/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('nord.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'nord' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/nord/lua/nord/palette.lua b/compiled/nord/lua/nord/palette.lua deleted file mode 100644 index 208eb45..0000000 --- a/compiled/nord/lua/nord/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#abb2bf", - darker_black = "#2a303c", - black = "#2E3440", - black2 = "#343a46", - one_bg = "#373d49", - one_bg2 = "#464c58", - one_bg3 = "#494f5b", - grey = "#4b515d", - grey_fg = "#565c68", - grey_fg2 = "#606672", - light_grey = "#646a76", - red = "#BF616A", - baby_pink = "#de878f", - pink = "#d57780", - line = "#414753", - green = "#A3BE8C", - vibrant_green = "#afca98", - blue = "#7797b7", - nord_blue = "#81A1C1", - yellow = "#EBCB8B", - sun = "#e1c181", - purple = "#B48EAD", - dark_purple = "#a983a2", - teal = "#6484a4", - orange = "#e39a83", - cyan = "#9aafe6", - statusline_bg = "#333945", - lightbg = "#3f4551", - pmenu_bg = "#A3BE8C", - folder_bg = "#7797b7", - base00 = "#2E3440", - base01 = "#3B4252", - base02 = "#434C5E", - base03 = "#4C566A", - base04 = "#D8DEE9", - base05 = "#E5E9F0", - base06 = "#ECEFF4", - base07 = "#8FBCBB", - base08 = "#88C0D0", - base09 = "#81A1C1", - base0A = "#88C0D0", - base0B = "#A3BE8C", - base0C = "#81A1C1", - base0D = "#81A1C1", - base0E = "#81A1C1", - base0F = "#B48EAD", -} - -return colors
\ No newline at end of file diff --git a/compiled/nord/lua/nord/theme.lua b/compiled/nord/lua/nord/theme.lua deleted file mode 100644 index 3879ce6..0000000 --- a/compiled/nord/lua/nord/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('nord.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/one_light/colors/one_light.vim b/compiled/one_light/colors/one_light.vim deleted file mode 100644 index 9931821..0000000 --- a/compiled/one_light/colors/one_light.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local one_light = require("one_light") -one_light.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/one_light/lua/one_light/init.lua b/compiled/one_light/lua/one_light/init.lua deleted file mode 100644 index ae68823..0000000 --- a/compiled/one_light/lua/one_light/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('one_light.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'one_light' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/one_light/lua/one_light/palette.lua b/compiled/one_light/lua/one_light/palette.lua deleted file mode 100644 index 8184860..0000000 --- a/compiled/one_light/lua/one_light/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#54555b", - darker_black = "#efeff0", - black = "#fafafa", - black2 = "#EAEAEB", - one_bg = "#dadadb", - one_bg2 = "#d4d4d5", - one_bg3 = "#cccccd", - grey = "#b7b7b8", - grey_fg = "#b0b0b1", - grey_fg2 = "#a9a9aa", - light_grey = "#a2a2a3", - red = "#d84a3d", - baby_pink = "#F07178", - pink = "#ff75a0", - line = "#e2e2e2", - green = "#50a14f", - vibrant_green = "#7eca9c", - nord_blue = "#428bab", - blue = "#4078f2", - yellow = "#c18401", - sun = "#dea95f", - purple = "#a28dcd", - dark_purple = "#8e79b9", - teal = "#519ABA", - orange = "#FF6A00", - cyan = "#0b8ec6", - statusline_bg = "#ececec", - lightbg = "#d3d3d3", - pmenu_bg = "#5e5f65", - folder_bg = "#6C6C6C", - base00 = "#fafafa", - base01 = "#f4f4f4", - base02 = "#e5e5e6", - base03 = "#dfdfe0", - base04 = "#d7d7d8", - base05 = "#383a42", - base06 = "#202227", - base07 = "#090a0b", - base08 = "#d84a3d", - base09 = "#a626a4", - base0A = "#c18401", - base0B = "#50a14f", - base0C = "#0070a8", - base0D = "#4078f2", - base0E = "#a626a4", - base0F = "#986801", -} - -return colors
\ No newline at end of file diff --git a/compiled/one_light/lua/one_light/theme.lua b/compiled/one_light/lua/one_light/theme.lua deleted file mode 100644 index a0e11b6..0000000 --- a/compiled/one_light/lua/one_light/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('one_light.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/onedark/colors/onedark.vim b/compiled/onedark/colors/onedark.vim deleted file mode 100644 index 93fe4a9..0000000 --- a/compiled/onedark/colors/onedark.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local onedark = require("onedark") -onedark.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/onedark/lua/onedark/init.lua b/compiled/onedark/lua/onedark/init.lua deleted file mode 100644 index c0d2f9b..0000000 --- a/compiled/onedark/lua/onedark/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('onedark.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'onedark' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/onedark/lua/onedark/palette.lua b/compiled/onedark/lua/onedark/palette.lua deleted file mode 100644 index 81566a5..0000000 --- a/compiled/onedark/lua/onedark/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#abb2bf", - darker_black = "#1b1f27", - black = "#1e222a", - black2 = "#252931", - one_bg = "#282c34", - one_bg2 = "#353b45", - one_bg3 = "#373b43", - grey = "#42464e", - grey_fg = "#565c64", - grey_fg2 = "#6f737b", - light_grey = "#6f737b", - red = "#e06c75", - baby_pink = "#DE8C92", - pink = "#ff75a0", - line = "#31353d", - green = "#98c379", - vibrant_green = "#7eca9c", - nord_blue = "#81A1C1", - blue = "#61afef", - yellow = "#e7c787", - sun = "#EBCB8B", - purple = "#de98fd", - dark_purple = "#c882e7", - teal = "#519ABA", - orange = "#fca2aa", - cyan = "#a3b8ef", - statusline_bg = "#22262e", - lightbg = "#2d3139", - pmenu_bg = "#61afef", - folder_bg = "#61afef", - base00 = "#1e222a", - base01 = "#353b45", - base02 = "#3e4451", - base03 = "#545862", - base04 = "#565c64", - base05 = "#abb2bf", - base06 = "#b6bdca", - base07 = "#c8ccd4", - base08 = "#e06c75", - base09 = "#d19a66", - base0A = "#e5c07b", - base0B = "#98c379", - base0C = "#56b6c2", - base0D = "#61afef", - base0E = "#c678dd", - base0F = "#be5046", -} - -return colors
\ No newline at end of file diff --git a/compiled/onedark/lua/onedark/theme.lua b/compiled/onedark/lua/onedark/theme.lua deleted file mode 100644 index 6d1e3e9..0000000 --- a/compiled/onedark/lua/onedark/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('onedark.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/onenord/colors/onenord.vim b/compiled/onenord/colors/onenord.vim deleted file mode 100644 index 7ae29ff..0000000 --- a/compiled/onenord/colors/onenord.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local onenord = require("onenord") -onenord.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/onenord/lua/onenord/init.lua b/compiled/onenord/lua/onenord/init.lua deleted file mode 100644 index 5538384..0000000 --- a/compiled/onenord/lua/onenord/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('onenord.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'onenord' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/onenord/lua/onenord/palette.lua b/compiled/onenord/lua/onenord/palette.lua deleted file mode 100644 index 4d0531d..0000000 --- a/compiled/onenord/lua/onenord/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#D8DEE9", - darker_black = "#252b37", - black = "#2a303c", - black2 = "#2f3541", - one_bg = "#343a46", - one_bg2 = "#3e4450", - one_bg3 = "#484e5a", - grey = "#4d535f", - grey_fg = "#545a66", - grey_fg2 = "#595f6b", - light_grey = "#606672", - red = "#d57780", - baby_pink = "#de878f", - pink = "#da838b", - line = "#414753", - green = "#A3BE8C", - vibrant_green = "#afca98", - blue = "#7797b7", - nord_blue = "#81A1C1", - yellow = "#EBCB8B", - sun = "#e1c181", - purple = "#aab1be", - dark_purple = "#B48EAD", - teal = "#6484a4", - orange = "#e39a83", - cyan = "#9aafe6", - statusline_bg = "#333945", - lightbg = "#3f4551", - pmenu_bg = "#A3BE8C", - folder_bg = "#7797b7", - base00 = "#2a303c", - base01 = "#3B4252", - base02 = "#434C5E", - base03 = "#4C566A", - base04 = "#566074", - base05 = "#bfc5d0", - base06 = "#c7cdd8", - base07 = "#ced4df", - base08 = "#d57780", - base09 = "#e39a83", - base0A = "#EBCB8B", - base0B = "#A3BE8C", - base0C = "#97b7d7", - base0D = "#81A1C1", - base0E = "#B48EAD", - base0F = "#d57780", -} - -return colors
\ No newline at end of file diff --git a/compiled/onenord/lua/onenord/theme.lua b/compiled/onenord/lua/onenord/theme.lua deleted file mode 100644 index aed083b..0000000 --- a/compiled/onenord/lua/onenord/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('onenord.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/onenord_light/colors/onenord_light.vim b/compiled/onenord_light/colors/onenord_light.vim deleted file mode 100644 index 85d661c..0000000 --- a/compiled/onenord_light/colors/onenord_light.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local onenord_light = require("onenord_light") -onenord_light.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/onenord_light/lua/onenord_light/init.lua b/compiled/onenord_light/lua/onenord_light/init.lua deleted file mode 100644 index 714b3e4..0000000 --- a/compiled/onenord_light/lua/onenord_light/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('onenord_light.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'light' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'onenord_light' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/onenord_light/lua/onenord_light/palette.lua b/compiled/onenord_light/lua/onenord_light/palette.lua deleted file mode 100644 index 105751c..0000000 --- a/compiled/onenord_light/lua/onenord_light/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#2a303c", - darker_black = "#ced4df", - black = "#D8DEE9", - black2 = "#c9cfda", - one_bg = "#c7cdd8", - one_bg2 = "#bdc3ce", - one_bg3 = "#b3b9c4", - grey = "#a9afba", - grey_fg = "#9fa5b0", - grey_fg2 = "#959ba6", - light_grey = "#8b919c", - red = "#a3454e", - baby_pink = "#ae5059", - pink = "#c56770", - line = "#acb2bd", - green = "#75905e", - vibrant_green = "#809b69", - nord_blue = "#5b7b9b", - blue = "#3f5f7f", - yellow = "#c18401", - sun = "#dea95f", - purple = "#9c87c7", - dark_purple = "#927dbd", - teal = "#395979", - orange = "#b46b54", - cyan = "#6181a1", - statusline_bg = "#ced4df", - lightbg = "#bac0cb", - pmenu_bg = "#7191b1", - folder_bg = "#616773", - base00 = "#D8DEE9", - base01 = "#f4f4f4", - base02 = "#e5e5e6", - base03 = "#dfdfe0", - base04 = "#d7d7d8", - base05 = "#3e4450", - base06 = "#272d39", - base07 = "#2a303c", - base08 = "#a3454e", - base09 = "#b46b54", - base0A = "#b88339", - base0B = "#75905e", - base0C = "#5b7b9b", - base0D = "#3f5f7f", - base0E = "#8d6786", - base0F = "#a3454e", -} - -return colors
\ No newline at end of file diff --git a/compiled/onenord_light/lua/onenord_light/theme.lua b/compiled/onenord_light/lua/onenord_light/theme.lua deleted file mode 100644 index 4185d2d..0000000 --- a/compiled/onenord_light/lua/onenord_light/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('onenord_light.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/palenight/colors/palenight.vim b/compiled/palenight/colors/palenight.vim deleted file mode 100644 index bf600f2..0000000 --- a/compiled/palenight/colors/palenight.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local palenight = require("palenight") -palenight.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/palenight/lua/palenight/init.lua b/compiled/palenight/lua/palenight/init.lua deleted file mode 100644 index 432cca1..0000000 --- a/compiled/palenight/lua/palenight/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('palenight.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'palenight' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/palenight/lua/palenight/palette.lua b/compiled/palenight/lua/palenight/palette.lua deleted file mode 100644 index cc55a7f..0000000 --- a/compiled/palenight/lua/palenight/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#ffffff", - darker_black = "#232738", - black = "#292D3E", - black2 = "#2f3344", - one_bg = "#333748", - one_bg2 = "#3c4051", - one_bg3 = "#444859", - grey = "#515566", - grey_fg = "#5b5f70", - grey_fg2 = "#65697a", - light_grey = "#6d7182", - red = "#f07178", - baby_pink = "#606475", - pink = "#ff5370", - line = "#3f4354", - green = "#c3e88d", - vibrant_green = "#96e88d", - nord_blue = "#8fb7ff", - blue = "#82aaff", - yellow = "#ffcb6b", - sun = "#ffd373", - purple = "#c792ea", - dark_purple = "#b383d2", - teal = "#89ffe6", - orange = "#ffa282", - cyan = "#89ddff", - statusline_bg = "#2d3142", - lightbg = "#3c4051", - pmenu_bg = "#82aaff", - folder_bg = "#82aaff", - base00 = "#292d3e", - base01 = "#444267", - base02 = "#32374d", - base03 = "#676e95", - base04 = "#8796b0", - base05 = "#d3d3d3", - base06 = "#efefef", - base07 = "#ffffff", - base08 = "#f07178", - base09 = "#ffa282", - base0A = "#ffcb6b", - base0B = "#c3e88d", - base0C = "#89ddff", - base0D = "#82aaff", - base0E = "#c792ea", - base0F = "#ff5370", -} - -return colors
\ No newline at end of file diff --git a/compiled/palenight/lua/palenight/theme.lua b/compiled/palenight/lua/palenight/theme.lua deleted file mode 100644 index 1c78638..0000000 --- a/compiled/palenight/lua/palenight/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('palenight.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/pastelDark/colors/pastelDark.vim b/compiled/pastelDark/colors/pastelDark.vim deleted file mode 100644 index c312334..0000000 --- a/compiled/pastelDark/colors/pastelDark.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local pastelDark = require("pastelDark") -pastelDark.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/pastelDark/lua/pastelDark/init.lua b/compiled/pastelDark/lua/pastelDark/init.lua deleted file mode 100644 index c49e188..0000000 --- a/compiled/pastelDark/lua/pastelDark/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('pastelDark.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'pastelDark' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/pastelDark/lua/pastelDark/palette.lua b/compiled/pastelDark/lua/pastelDark/palette.lua deleted file mode 100644 index 9464d9e..0000000 --- a/compiled/pastelDark/lua/pastelDark/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#b5bcc9", - darker_black = "#10171e", - black = "#131a21", - black2 = "#1a2128", - one_bg = "#1e252c", - one_bg2 = "#2a3138", - one_bg3 = "#363d44", - grey = "#363d44", - grey_fg = "#4e555c", - grey_fg2 = "#51585f", - light_grey = "#545b62", - red = "#ef8891", - baby_pink = "#fca2aa", - pink = "#fca2af", - line = "#272e35", - green = "#9fe8c3", - vibrant_green = "#9ce5c0", - blue = "#99aee5", - nord_blue = "#9aa8cf", - yellow = "#fbdf90", - sun = "#fbdf9a", - purple = "#c2a2e3", - dark_purple = "#b696d7", - teal = "#92dbb6", - orange = "#EDA685", - cyan = "#b5c3ea", - statusline_bg = "#181f26", - lightbg = "#222930", - pmenu_bg = "#ef8891", - folder_bg = "#99aee5", - base0A = "#f5d595", - base04 = "#4f565d", - base07 = "#b5bcc9", - base05 = "#ced4df", - base0E = "#c2a2e3", - base0D = "#a3b8ef", - base0C = "#abb9e0", - base0B = "#9ce5c0", - base02 = "#31383f", - base0F = "#e88e9b", - base03 = "#40474e", - base08 = "#ef8891", - base01 = "#2c333a", - base00 = "#131a21", - base09 = "#EDA685", - base06 = "#d3d9e4", -} - -return colors
\ No newline at end of file diff --git a/compiled/pastelDark/lua/pastelDark/theme.lua b/compiled/pastelDark/lua/pastelDark/theme.lua deleted file mode 100644 index b5ee6aa..0000000 --- a/compiled/pastelDark/lua/pastelDark/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('pastelDark.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/radium/colors/radium.vim b/compiled/radium/colors/radium.vim deleted file mode 100644 index 3f1abb2..0000000 --- a/compiled/radium/colors/radium.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local radium = require("radium") -radium.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/radium/lua/radium/init.lua b/compiled/radium/lua/radium/init.lua deleted file mode 100644 index 74c439a..0000000 --- a/compiled/radium/lua/radium/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('radium.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'radium' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/radium/lua/radium/palette.lua b/compiled/radium/lua/radium/palette.lua deleted file mode 100644 index 22eed00..0000000 --- a/compiled/radium/lua/radium/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#d4d4d5", - darker_black = "#0a0d11", - black = "#101317", - black2 = "#191d22", - one_bg = "#212428", - one_bg2 = "#292c30", - one_bg3 = "#33363a", - grey = "#3e4145", - grey_fg = "#45484c", - grey_fg2 = "#4a4d51", - light_grey = "#525559", - red = "#f87070", - baby_pink = "#ff8e8e", - pink = "#ffa7a7", - line = "#30303a", - green = "#37d99e", - vibrant_green = "#79dcaa", - blue = "#7ab0df", - nord_blue = "#87bdec", - yellow = "#ffe59e", - sun = "#ffeda6", - purple = "#c397d8", - dark_purple = "#b68acb", - teal = "#63b3ad", - orange = "#f0a988", - cyan = "#50cad2", - statusline_bg = "#15191e", - lightbg = "#24282d", - pmenu_bg = "#3bdda2", - folder_bg = "#5fb0fc", - base00 = "#101317", - base01 = "#1a1d21", - base02 = "#23262a", - base03 = "#2b2e32", - base04 = "#323539", - base05 = "#c5c5c6", - base06 = "#cbcbcc", - base07 = "#d4d4d5", - base08 = "#37d99e", - base09 = "#f0a988", - base0A = "#e5d487", - base0B = "#e87979", - base0C = "#37d99e", - base0D = "#5fb0fc", - base0E = "#c397d8", - base0F = "#e87979", -} - -return colors
\ No newline at end of file diff --git a/compiled/radium/lua/radium/theme.lua b/compiled/radium/lua/radium/theme.lua deleted file mode 100644 index b76b148..0000000 --- a/compiled/radium/lua/radium/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('radium.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/rosepine/colors/rosepine.vim b/compiled/rosepine/colors/rosepine.vim deleted file mode 100644 index 0f8de61..0000000 --- a/compiled/rosepine/colors/rosepine.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local rosepine = require("rosepine") -rosepine.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/rosepine/lua/rosepine/init.lua b/compiled/rosepine/lua/rosepine/init.lua deleted file mode 100644 index e16aa3f..0000000 --- a/compiled/rosepine/lua/rosepine/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('rosepine.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'rosepine' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/rosepine/lua/rosepine/palette.lua b/compiled/rosepine/lua/rosepine/palette.lua deleted file mode 100644 index 9215042..0000000 --- a/compiled/rosepine/lua/rosepine/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - black = "#191724", - darker_black = "#13111e", - white = "#e0def4", - black2 = "#1f1d2a", - one_bg = "#262431", - one_bg2 = "#2d2b38", - one_bg3 = "#353340", - grey = "#3f3d4a", - grey_fg = "#474552", - grey_fg2 = "#514f5c", - light_grey = "#5d5b68", - red = "#eb6f92", - baby_pink = "#f5799c", - pink = "#ff83a6", - line = "#2e2c39", - green = "#ABE9B3", - vibrant_green = "#b5f3bd", - nord_blue = "#86b9c2", - blue = "#8bbec7", - yellow = "#f6c177", - sun = "#fec97f", - purple = "#c4a7e7", - dark_purple = "#bb9ede", - teal = "#6aadc8", - orange = "#f6c177", - cyan = "#a3d6df", - statusline_bg = "#201e2b", - lightbg = "#2d2b38", - pmenu_bg = "#c4a7e7", - folder_bg = "#6aadc8", - base00 = "#191724", - base01 = "#1f1d2e", - base02 = "#403d52", - base03 = "#6e6a86", - base04 = "#908caa", - base05 = "#e0def4", - base06 = "#cecacd", - base07 = "#fffaf3", - base08 = "#e2e1e7", - base09 = "#eb6f92", - base0A = "#f6c177", - base0B = "#ebbcba", - base0C = "#4d90ab", - base0D = "#93c6cf", - base0E = "#c4a7e7", - base0F = "#e5e5e5", -} - -return colors
\ No newline at end of file diff --git a/compiled/rosepine/lua/rosepine/theme.lua b/compiled/rosepine/lua/rosepine/theme.lua deleted file mode 100644 index 775aca8..0000000 --- a/compiled/rosepine/lua/rosepine/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('rosepine.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/rxyhn/colors/rxyhn.vim b/compiled/rxyhn/colors/rxyhn.vim deleted file mode 100644 index 02fb3a8..0000000 --- a/compiled/rxyhn/colors/rxyhn.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local rxyhn = require("rxyhn") -rxyhn.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/rxyhn/lua/rxyhn/init.lua b/compiled/rxyhn/lua/rxyhn/init.lua deleted file mode 100644 index d76662c..0000000 --- a/compiled/rxyhn/lua/rxyhn/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('rxyhn.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'rxyhn' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/rxyhn/lua/rxyhn/palette.lua b/compiled/rxyhn/lua/rxyhn/palette.lua deleted file mode 100644 index 962a140..0000000 --- a/compiled/rxyhn/lua/rxyhn/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#D9D7D6", - darker_black = "#000a0e", - black = "#061115", - black2 = "#0d181c", - one_bg = "#131e22", - one_bg2 = "#1c272b", - one_bg3 = "#242f33", - grey = "#313c40", - grey_fg = "#3b464a", - grey_fg2 = "#455054", - light_grey = "#4f5a5e", - red = "#DF5B61", - baby_pink = "#EE6A70", - pink = "#F16269", - line = "#222d31", - green = "#78B892", - vibrant_green = "#8CD7AA", - nord_blue = "#5A84BC", - blue = "#6791C9", - yellow = "#ecd28b", - sun = "#f6dc95", - purple = "#C488EC", - dark_purple = "#BC83E3", - teal = "#7ACFE4", - orange = "#E89982", - cyan = "#67AFC1", - statusline_bg = "#0A1519", - lightbg = "#1a2529", - pmenu_bg = "#78B892", - folder_bg = "#6791C9", - base00 = "#061115", - base01 = "#0C171B", - base02 = "#101B1F", - base03 = "#192428", - base04 = "#212C30", - base05 = "#D9D7D6", - base06 = "#E3E1E0", - base07 = "#EDEBEA", - base08 = "#f26e74", - base09 = "#ecd28b", - base0A = "#E9967E", - base0B = "#82c29c", - base0C = "#6791C9", - base0D = "#79AAEB", - base0E = "#C488EC", - base0F = "#F16269", -} - -return colors
\ No newline at end of file diff --git a/compiled/rxyhn/lua/rxyhn/theme.lua b/compiled/rxyhn/lua/rxyhn/theme.lua deleted file mode 100644 index 5a3c785..0000000 --- a/compiled/rxyhn/lua/rxyhn/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('rxyhn.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/sweetpastel/colors/sweetpastel.vim b/compiled/sweetpastel/colors/sweetpastel.vim deleted file mode 100644 index 46a836a..0000000 --- a/compiled/sweetpastel/colors/sweetpastel.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local sweetpastel = require("sweetpastel") -sweetpastel.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/sweetpastel/lua/sweetpastel/init.lua b/compiled/sweetpastel/lua/sweetpastel/init.lua deleted file mode 100644 index d3d176b..0000000 --- a/compiled/sweetpastel/lua/sweetpastel/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('sweetpastel.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'sweetpastel' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/sweetpastel/lua/sweetpastel/palette.lua b/compiled/sweetpastel/lua/sweetpastel/palette.lua deleted file mode 100644 index c9d5849..0000000 --- a/compiled/sweetpastel/lua/sweetpastel/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#FFDEDE", - darker_black = "#161a1e", - black = "#1B1F23", - black2 = "#22262a", - one_bg = "#25292d", - one_bg2 = "#2f3337", - one_bg3 = "#393d41", - grey = "#43474b", - grey_fg = "#4b4f53", - grey_fg2 = "#54585c", - light_grey = "#5d6165", - red = "#e5a3a1", - baby_pink = "#FFC0EB", - pink = "#F8B3CC", - line = "#343A40", - green = "#B4E3AD", - vibrant_green = "#9EDABE", - nord_blue = "#B0CEEF", - blue = "#A3CBE7", - yellow = "#ECE3B1", - sun = "#E7DA84", - purple = "#CEACE8", - dark_purple = "#B1A8FB", - teal = "#94D2CF", - orange = "#F1C192", - cyan = "#C9D4FF", - statusline_bg = "#22262a", - lightbg = "#2f3337", - pmenu_bg = "#F8B3CC", - folder_bg = "#A3CBE7", - base00 = "#1B1F23", - base01 = "#25292d", - base02 = "#2f3337", - base03 = "#393d41", - base04 = "#43474b", - base05 = "#FDE5E6", - base06 = "#DEE2E6", - base07 = "#F8F9FA", - base08 = "#e5a3a1", - base09 = "#F1C192", - base0A = "#ECE3B1", - base0B = "#B4E3AD", - base0C = "#F8B3CC", - base0D = "#A3CBE7", - base0E = "#CEACE8", - base0F = "#e5a3a1", -} - -return colors
\ No newline at end of file diff --git a/compiled/sweetpastel/lua/sweetpastel/theme.lua b/compiled/sweetpastel/lua/sweetpastel/theme.lua deleted file mode 100644 index d2b98f5..0000000 --- a/compiled/sweetpastel/lua/sweetpastel/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('sweetpastel.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/tokyodark/colors/tokyodark.vim b/compiled/tokyodark/colors/tokyodark.vim deleted file mode 100644 index a6a07a0..0000000 --- a/compiled/tokyodark/colors/tokyodark.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local tokyodark = require("tokyodark") -tokyodark.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/tokyodark/lua/tokyodark/init.lua b/compiled/tokyodark/lua/tokyodark/init.lua deleted file mode 100644 index 03b84ab..0000000 --- a/compiled/tokyodark/lua/tokyodark/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('tokyodark.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'tokyodark' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/tokyodark/lua/tokyodark/palette.lua b/compiled/tokyodark/lua/tokyodark/palette.lua deleted file mode 100644 index 67e6655..0000000 --- a/compiled/tokyodark/lua/tokyodark/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#A0A8CD", - darker_black = "#0c0d18", - black = "#11121D", - black2 = "#171823", - one_bg = "#1d1e29", - one_bg2 = "#252631", - one_bg3 = "#252631", - grey = "#40414c", - grey_fg = "#474853", - grey_fg2 = "#4e4f5a", - light_grey = "#545560", - red = "#ee6d85", - baby_pink = "#fd7c94", - pink = "#fe6D85", - line = "#191a25", - green = "#98c379", - vibrant_green = "#95c561", - nord_blue = "#648ce1", - blue = "#7199ee", - yellow = "#d7a65f", - sun = "#dfae67", - purple = "#a485dd", - dark_purple = "#9071c9", - teal = "#519aba", - orange = "#f6955b", - cyan = "#38a89d", - statusline_bg = "#161722", - lightbg = "#2a2b36", - pmenu_bg = "#ee6d85", - folder_bg = "#7199ee", - base00 = "#11121d", - base01 = "#1b1c27", - base02 = "#21222d", - base03 = "#282934", - base04 = "#30313c", - base05 = "#abb2bf", - base06 = "#b2b9c6", - base07 = "#A0A8CD", - base08 = "#ee6d85", - base09 = "#7199ee", - base0A = "#7199ee", - base0B = "#dfae67", - base0C = "#a485dd", - base0D = "#95c561", - base0E = "#a485dd", - base0F = "#f3627a", -} - -return colors
\ No newline at end of file diff --git a/compiled/tokyodark/lua/tokyodark/theme.lua b/compiled/tokyodark/lua/tokyodark/theme.lua deleted file mode 100644 index 3634d38..0000000 --- a/compiled/tokyodark/lua/tokyodark/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('tokyodark.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/tokyonight/colors/tokyonight.vim b/compiled/tokyonight/colors/tokyonight.vim deleted file mode 100644 index e8fa399..0000000 --- a/compiled/tokyonight/colors/tokyonight.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local tokyonight = require("tokyonight") -tokyonight.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/tokyonight/lua/tokyonight/init.lua b/compiled/tokyonight/lua/tokyonight/init.lua deleted file mode 100644 index 7371129..0000000 --- a/compiled/tokyonight/lua/tokyonight/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('tokyonight.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'tokyonight' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/tokyonight/lua/tokyonight/palette.lua b/compiled/tokyonight/lua/tokyonight/palette.lua deleted file mode 100644 index a706bf3..0000000 --- a/compiled/tokyonight/lua/tokyonight/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#c0caf5", - darker_black = "#16161e", - black = "#1a1b26", - black2 = "#1f2336", - one_bg = "#24283b", - one_bg2 = "#414868", - one_bg3 = "#353b45", - grey = "#40486a", - grey_fg = "#565f89", - grey_fg2 = "#4f5779", - light_grey = "#545c7e", - red = "#f7768e", - baby_pink = "#DE8C92", - pink = "#ff75a0", - line = "#32333e", - green = "#9ece6a", - vibrant_green = "#73daca", - nord_blue = "#80a8fd", - blue = "#7aa2f7", - yellow = "#e0af68", - sun = "#EBCB8B", - purple = "#bb9af7", - dark_purple = "#9d7cd8", - teal = "#1abc9c", - orange = "#ff9e64", - cyan = "#7dcfff", - statusline_bg = "#1d1e29", - lightbg = "#32333e", - pmenu_bg = "#7aa2f7", - folder_bg = "#7aa2f7", - base00 = "#1A1B26", - base01 = "#3b4261", - base02 = "#3b4261", - base03 = "#545c7e", - base04 = "#565c64", - base05 = "#a9b1d6", - base06 = "#bbc5f0", - base07 = "#c0caf5", - base08 = "#f7768e", - base09 = "#ff9e64", - base0A = "#ffd089", - base0B = "#9ece6a", - base0C = "#2ac3de", - base0D = "#7aa2f7", - base0E = "#bb9af7", - base0F = "#c0caf5", -} - -return colors
\ No newline at end of file diff --git a/compiled/tokyonight/lua/tokyonight/theme.lua b/compiled/tokyonight/lua/tokyonight/theme.lua deleted file mode 100644 index dbab02e..0000000 --- a/compiled/tokyonight/lua/tokyonight/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('tokyonight.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/tomorrow_night/colors/tomorrow_night.vim b/compiled/tomorrow_night/colors/tomorrow_night.vim deleted file mode 100644 index 08c53ee..0000000 --- a/compiled/tomorrow_night/colors/tomorrow_night.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local tomorrow_night = require("tomorrow_night") -tomorrow_night.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/tomorrow_night/lua/tomorrow_night/init.lua b/compiled/tomorrow_night/lua/tomorrow_night/init.lua deleted file mode 100644 index fea5c06..0000000 --- a/compiled/tomorrow_night/lua/tomorrow_night/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('tomorrow_night.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'tomorrow_night' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/tomorrow_night/lua/tomorrow_night/palette.lua b/compiled/tomorrow_night/lua/tomorrow_night/palette.lua deleted file mode 100644 index ec69af1..0000000 --- a/compiled/tomorrow_night/lua/tomorrow_night/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#C5C8C2", - darker_black = "#191b1d", - black = "#1d1f21", - black2 = "#232527", - one_bg = "#2d2f31", - one_bg2 = "#353b45", - one_bg3 = "#30343c", - grey = "#434547", - grey_fg = "#545B68", - grey_fg2 = "#616875", - light_grey = "#676e7b", - red = "#cc6666", - baby_pink = "#FF6E79", - pink = "#ff9ca3", - line = "#313335", - green = "#a4b595", - vibrant_green = "#a3b991", - nord_blue = "#728da8", - blue = "#6f8dab", - yellow = "#d7bd8d", - sun = "#e4c180", - purple = "#b4bbc8", - dark_purple = "#b290ac", - teal = "#8abdb6", - orange = "#DE935F", - cyan = "#70c0b1", - statusline_bg = "#212326", - lightbg = "#373B41", - pmenu_bg = "#a4b595", - folder_bg = "#6f8dab", - base0A = "#f0c674", - base04 = "#b4b7b4", - base07 = "#ffffff", - base05 = "#c5c8c6", - base0E = "#b294bb", - base0D = "#81a2be", - base0C = "#8abeb7", - base0B = "#b5bd68", - base02 = "#373b41", - base0F = "#a3685a", - base03 = "#969896", - base08 = "#cc6666", - base01 = "#282a2e", - base00 = "#1d1f21", - base09 = "#de935f", - base06 = "#e0e0e0", -} - -return colors
\ No newline at end of file diff --git a/compiled/tomorrow_night/lua/tomorrow_night/theme.lua b/compiled/tomorrow_night/lua/tomorrow_night/theme.lua deleted file mode 100644 index 16d4225..0000000 --- a/compiled/tomorrow_night/lua/tomorrow_night/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('tomorrow_night.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/vscode_dark/colors/vscode_dark.vim b/compiled/vscode_dark/colors/vscode_dark.vim deleted file mode 100644 index 9ff398b..0000000 --- a/compiled/vscode_dark/colors/vscode_dark.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local vscode_dark = require("vscode_dark") -vscode_dark.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/vscode_dark/lua/vscode_dark/init.lua b/compiled/vscode_dark/lua/vscode_dark/init.lua deleted file mode 100644 index 1907709..0000000 --- a/compiled/vscode_dark/lua/vscode_dark/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('vscode_dark.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'vscode_dark' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/vscode_dark/lua/vscode_dark/palette.lua b/compiled/vscode_dark/lua/vscode_dark/palette.lua deleted file mode 100644 index f7706a6..0000000 --- a/compiled/vscode_dark/lua/vscode_dark/palette.lua +++ /dev/null @@ -1,51 +0,0 @@ -local colors = { - white = "#dee1e6", - darker_black = "#1a1a1a", - black = "#1E1E1E", - black2 = "#252525", - one_bg = "#282828", - one_bg2 = "#313131", - one_bg3 = "#3a3a3a", - grey = "#444444", - grey_fg = "#4e4e4e", - grey_fg2 = "#585858", - light_grey = "#626262", - red = "#D16969", - baby_pink = "#ea696f", - pink = "#bb7cb6", - line = "#2e2e2e", - green = "#B5CEA8", - green1 = "#4EC994", - vibrant_green = "#bfd8b2", - blue = "#569CD6", - nord_blue = "#60a6e0", - yellow = "#D7BA7D", - sun = "#e1c487", - purple = "#c68aee", - dark_purple = "#b77bdf", - teal = "#4294D6", - orange = "#d3967d", - cyan = "#9CDCFE", - statusline_bg = "#242424", - lightbg = "#303030", - pmenu_bg = "#60a6e0", - folder_bg = "#7A8A92", - base00 = "#1E1E1E", - base01 = "#262626", - base02 = "#303030", - base03 = "#3C3C3C", - base04 = "#464646", - base05 = "#D4D4D4", - base06 = "#E9E9E9", - base07 = "#FFFFFF", - base08 = "#D16969", - base09 = "#B5CEA8", - base0A = "#D7BA7D", - base0B = "#BD8D78", - base0C = "#9CDCFE", - base0D = "#DCDCAA", - base0E = "#C586C0", - base0F = "#E9E9E9", -} - -return colors
\ No newline at end of file diff --git a/compiled/vscode_dark/lua/vscode_dark/theme.lua b/compiled/vscode_dark/lua/vscode_dark/theme.lua deleted file mode 100644 index 1974cbd..0000000 --- a/compiled/vscode_dark/lua/vscode_dark/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('vscode_dark.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/wombat/colors/wombat.vim b/compiled/wombat/colors/wombat.vim deleted file mode 100644 index f7f03ab..0000000 --- a/compiled/wombat/colors/wombat.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local wombat = require("wombat") -wombat.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/wombat/lua/wombat/init.lua b/compiled/wombat/lua/wombat/init.lua deleted file mode 100644 index 7bf977b..0000000 --- a/compiled/wombat/lua/wombat/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('wombat.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'wombat' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/wombat/lua/wombat/palette.lua b/compiled/wombat/lua/wombat/palette.lua deleted file mode 100644 index 16f4704..0000000 --- a/compiled/wombat/lua/wombat/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#e4e0d7", - darker_black = "#1b1b1b", - black = "#222222", - black2 = "#292929", - one_bg = "#333333", - one_bg2 = "#3a3a3a", - one_bg3 = "#414141", - grey = "#4b4b4b", - grey_fg = "#535353", - grey_fg2 = "#5a5a5a", - light_grey = "#646464", - red = "#FF8F7E", - baby_pink = "#f58eff", - pink = "#e780f8", - line = "#353535", - green = "#AEE474", - vibrant_green = "#95e454", - nord_blue = "#8dbdfb", - blue = "#88B8F6", - yellow = "#efdeab", - sun = "#feedba", - purple = "#dc8cff", - dark_purple = "#c878f0", - teal = "#7EB6BC", - orange = "#FFCC66", - cyan = "#90fdf8", - statusline_bg = "#262626", - lightbg = "#3c3c3c", - pmenu_bg = "#95e454", - folder_bg = "#7BB0C9", - base00 = "#202020", - base01 = "#303030", - base02 = "#373737", - base03 = "#3e3e3e", - base04 = "#484848", - base05 = "#d6d2c9", - base06 = "#ddd9d0", - base07 = "#e4e0d7", - base08 = "#FF8F7E", - base09 = "#FFCC66", - base0A = "#efdeab", - base0B = "#AEE474", - base0C = "#7EB6BC", - base0D = "#88B8F6", - base0E = "#dc8cff", - base0F = "#dc8c64", -} - -return colors
\ No newline at end of file diff --git a/compiled/wombat/lua/wombat/theme.lua b/compiled/wombat/lua/wombat/theme.lua deleted file mode 100644 index 75b3a20..0000000 --- a/compiled/wombat/lua/wombat/theme.lua +++ /dev/null @@ -1,342 +0,0 @@ - -local c = require('wombat.palette') - -local hl = vim.api.nvim_set_hl -local theme = {} - -theme.set_highlights = function() - - -- highlights - hl(0, "Normal", { fg = c.base05, bg = c.base00 }) - hl(0, "SignColumn", { fg = c.base03, bg = 'NONE', sp = 'NONE', }) - hl(0, "MsgArea", { fg = c.base05, bg = c.base00 }) - hl(0, "ModeMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "MsgSeparator", { fg = c.base05, bg = c.base00 }) - hl(0, "SpellBad", { fg = 'NONE', bg = 'NONE', sp = c.base08, undercurl=true, }) - hl(0, "SpellCap", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "SpellLocal", { fg = 'NONE', bg = 'NONE', sp = c.base0C, undercurl=true, }) - hl(0, "SpellRare", { fg = 'NONE', bg = 'NONE', sp = c.base0D, undercurl=true, }) - hl(0, "NormalNC", { fg = c.base05, bg = c.base00 }) - hl(0, "Pmenu", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuSel", { fg = c.black, bg = c.pmenu_bg }) - hl(0, "WildMenu", { fg = c.base08, bg = c.base0A }) - hl(0, "CursorLineNr", { fg = c.white, bg = 'NONE' }) - hl(0, "Comment", { fg = c.grey_fg, bg = 'NONE' }) - hl(0, "Folded", { fg = c.base03, bg = c.base01 }) - hl(0, "FoldColumn", { fg = c.base0C, bg = c.base01 }) - hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) - hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) - hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) - hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) - hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) - hl(0, "Visual", { fg = 'NONE', bg = c.base02 }) - hl(0, "VisualNOS", { fg = c.base08, bg = 'NONE' }) - hl(0, "WarningMsg", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiffAdd", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "DiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "DiffDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "QuickFixLine", { fg = 'NONE', bg = c.base01, sp = 'NONE', }) - hl(0, "PmenuSbar", { fg = 'NONE', bg = c.one_bg }) - hl(0, "PmenuThumb", { fg = 'NONE', bg = c.grey }) - hl(0, "MatchWord", { fg = c.white, bg = c.grey }) - hl(0, "MatchParen", { link = 'MatchWord' }) - hl(0, "Cursor", { fg = c.base00, bg = c.base05 }) - hl(0, "Conceal", { fg = 'NONE', bg = 'NONE' }) - hl(0, "Directory", { fg = c.base0D, bg = 'NONE' }) - hl(0, "SpecialKey", { fg = c.base03, bg = 'NONE' }) - hl(0, "Title", { fg = c.base0D, bg = 'NONE', sp = 'NONE', }) - hl(0, "ErrorMsg", { fg = c.base08, bg = c.base00 }) - hl(0, "Search", { fg = c.base01, bg = c.base0A }) - hl(0, "IncSearch", { fg = c.base01, bg = c.base09 }) - hl(0, "Substitute", { fg = c.base01, bg = c.base0A, sp = 'NONE', }) - hl(0, "MoreMsg", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Question", { fg = c.base0D, bg = 'NONE' }) - hl(0, "NonText", { fg = c.base03, bg = 'NONE' }) - hl(0, "Variable", { fg = c.base05, bg = 'NONE' }) - hl(0, "String", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Character", { fg = c.base08, bg = 'NONE' }) - hl(0, "Constant", { fg = c.base08, bg = 'NONE' }) - hl(0, "Number", { fg = c.base09, bg = 'NONE' }) - hl(0, "Boolean", { fg = c.base09, bg = 'NONE' }) - hl(0, "Float", { fg = c.base09, bg = 'NONE' }) - hl(0, "Identifier", { fg = c.base08, bg = 'NONE', sp = 'NONE', }) - hl(0, "Function", { fg = c.base0D, bg = 'NONE' }) - hl(0, "Operator", { fg = c.base05, bg = 'NONE', sp = 'NONE', }) - hl(0, "Type", { fg = c.base0A, bg = 'NONE', sp = 'NONE', }) - hl(0, "StorageClass", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Structure", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Typedef", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Keyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Statement", { fg = c.base08, bg = 'NONE' }) - hl(0, "Conditional", { fg = c.base0E, bg = 'NONE' }) - hl(0, "Repeat", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Label", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Exception", { fg = c.base08, bg = 'NONE' }) - hl(0, "Include", { fg = c.base0D, bg = 'NONE' }) - hl(0, "PreProc", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Define", { fg = c.base0E, bg = 'NONE', sp = 'NONE', }) - hl(0, "Macro", { fg = c.base08, bg = 'NONE' }) - hl(0, "Special", { fg = c.base0C, bg = 'NONE' }) - hl(0, "SpecialChar", { fg = c.base0F, bg = 'NONE' }) - hl(0, "Tag", { fg = c.base0A, bg = 'NONE' }) - hl(0, "Debug", { fg = c.base08, bg = 'NONE' }) - hl(0, "Underlined", { fg = c.base0B, bg = 'NONE' }) - hl(0, "Bold", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "Italic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "Ignore", { fg = c.cyan, bg = c.base00, bold=true, }) - hl(0, "Todo", { fg = c.base0A, bg = c.base01 }) - hl(0, "Error", { fg = c.base00, bg = c.base08 }) - hl(0, "TabLine", { fg = c.light_grey, bg = c.line }) - hl(0, "TabLineSel", { fg = c.white, bg = c.line }) - hl(0, "TabLineFill", { fg = c.line, bg = c.line }) - - -- Treesitter - hl(0, "TSComment", { link = 'Comment' }) - hl(0, "TSAnnotation", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSAttribute", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConstructor", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSTypeBuiltin", { fg = c.base0A, bg = 'NONE' }) - hl(0, "TSConditional", { link = 'Conditional' }) - hl(0, "TSException", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSInclude", { link = 'Include' }) - hl(0, "TSKeywordReturn", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeyword", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSKeywordFunction", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSNamespace", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSConstBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSFloat", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSCharacter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSError", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFunction", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSFuncBuiltin", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSMethod", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSConstMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSFuncMacro", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSVariable", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSVariableBuiltin", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSProperty", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSField", { fg = c.base0D, bg = 'NONE' }) - hl(0, "TSParameter", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSParameterReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSSymbol", { fg = c.base0B, bg = 'NONE' }) - hl(0, "TSText", { fg = c.base05, bg = 'NONE' }) - hl(0, "TSPunctDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagDelimiter", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSTagAttribute", { link = 'TSProperty' }) - hl(0, "TSPunctBracket", { fg = c.base0F, bg = 'NONE' }) - hl(0, "TSPunctSpecial", { fg = c.base08, bg = 'NONE' }) - hl(0, "TSStringRegex", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSStringEscape", { fg = c.base0C, bg = 'NONE' }) - hl(0, "TSEmphasis", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSLiteral", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSURI", { fg = c.base09, bg = 'NONE' }) - hl(0, "TSKeywordOperator", { fg = c.base0E, bg = 'NONE' }) - hl(0, "TSStrong", { fg = 'NONE', bg = 'NONE', bold=true, }) - hl(0, "TreesitterContext", { link = 'CursorLine' }) - - -- markdown - hl(0, "markdownBlockquote", { fg = c.green, bg = 'NONE' }) - hl(0, "markdownCode", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeBlock", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownCodeDelimiter", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownH1", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH2", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH3", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH4", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH5", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownH6", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingDelimiter", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownHeadingRule", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "markdownId", { fg = c.purple, bg = 'NONE' }) - hl(0, "markdownIdDeclaration", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownIdDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownLinkDelimiter", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "markdownBold", { fg = c.blue, bg = 'NONE', bold=true, }) - hl(0, "markdownItalic", { fg = 'NONE', bg = 'NONE', italic=true, }) - hl(0, "markdownBoldItalic", { fg = c.yellow, bg = 'NONE', bold=true, italic=true, }) - hl(0, "markdownListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownOrderedListMarker", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownRule", { fg = c.base01, bg = 'NONE' }) - hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underline=true, }) - hl(0, "markdownLinkText", { fg = c.blue, bg = 'NONE' }) - hl(0, "markdownFootnote", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownFootnoteDefinition", { fg = c.orange, bg = 'NONE' }) - hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) - - -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) - - -- Git - hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "SignChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "SignDelete", { fg = c.red, bg = 'NONE' }) - hl(0, "GitSignsAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "GitSignsChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "GitSignsDelete", { fg = c.red, bg = 'NONE' }) - - -- LSP - hl(0, "DiagnosticError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticWarn", { fg = c.yellow, bg = 'NONE' }) - hl(0, "DiagnosticInfo", { fg = c.green, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsDefaultHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsVirtualTextHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsFloatingHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "DiagnosticSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "DiagnosticSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "DiagnosticSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "DiagnosticSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsSignHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsError", { fg = c.base08, bg = 'NONE' }) - hl(0, "LspDiagnosticsWarning", { fg = c.base09, bg = 'NONE' }) - hl(0, "LspDiagnosticsInformation", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsInfo", { fg = c.sun, bg = 'NONE' }) - hl(0, "LspDiagnosticsHint", { fg = c.purple, bg = 'NONE' }) - hl(0, "LspDiagnosticsUnderlineError", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineWarning", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInformation", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineInfo", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspDiagnosticsUnderlineHint", { fg = 'NONE', bg = 'NONE', underline=true, }) - hl(0, "LspReferenceRead", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceText", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspReferenceWrite", { fg = 'NONE', bg = '#2e303b' }) - hl(0, "LspCodeLens", { fg = c.base04, bg = 'NONE', italic=true, }) - hl(0, "LspCodeLensSeparator", { fg = c.base04, bg = 'NONE', italic=true, }) - - -- Telescope - hl(0, "TelescopeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "TelescopePreviewTitle", { fg = c.black, bg = c.green, bold=true, }) - hl(0, "TelescopePromptTitle", { fg = c.black, bg = c.red, bold=true, }) - hl(0, "TelescopeResultsTitle", { fg = c.darker_black, bg = c.darker_black, bold=true, }) - hl(0, "TelescopeSelection", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopeBorder", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "TelescopePromptBorder", { fg = c.black2, bg = c.black2 }) - hl(0, "TelescopePromptNormal", { fg = c.white, bg = c.black2 }) - hl(0, "TelescopePromptPrefix", { fg = c.red, bg = c.black2 }) - hl(0, "TelescopeResultsDiffAdd", { fg = c.green, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffChange", { fg = c.blue, bg = 'NONE' }) - hl(0, "TelescopeResultsDiffDelete", { fg = c.red, bg = 'NONE' }) - - -- NvimTree - hl(0, "NvimTreeFolderIcon", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeIndentMarker", { fg = '#c5c5c5', bg = 'NONE' }) - hl(0, "NvimTreeNormal", { fg = 'NONE', bg = c.darker_black }) - hl(0, "NvimTreeVertSplit", { fg = c.darker_black, bg = c.darker_black }) - hl(0, "NvimTreeFolderName", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeOpenedFolderName", { fg = c.blue, bg = 'NONE', bold=true, italic=true, }) - hl(0, "NvimTreeEmptyFolderName", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeGitIgnored", { fg = c.grey, bg = 'NONE', italic=true, }) - hl(0, "NvimTreeImageFile", { fg = c.light_grey, bg = 'NONE' }) - hl(0, "NvimTreeSpecialFile", { fg = c.orange, bg = 'NONE' }) - hl(0, "NvimTreeEndOfBuffer", { fg = c.darker_black, bg = 'NONE' }) - hl(0, "NvimTreeCursorLine", { fg = 'NONE', bg = '#282b37' }) - hl(0, "NvimTreeGitignoreIcon", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitStaged", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitNew", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitRenamed", { fg = c.vibrant_green, bg = 'NONE' }) - hl(0, "NvimTreeGitDeleted", { fg = c.red, bg = 'NONE' }) - hl(0, "NvimTreeGitMerge", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeGitDirty", { fg = c.blue, bg = 'NONE' }) - hl(0, "NvimTreeSymlink", { fg = c.cyan, bg = 'NONE' }) - hl(0, "NvimTreeRootFolder", { fg = c.base05, bg = 'NONE', bold=true, }) - hl(0, "NvimTreeExecFile", { fg = c.green, bg = 'NONE' }) - - -- Buffer - hl(0, "BufferCurrent", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferCurrentMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferCurrentSign", { fg = c.purple, bg = c.base00 }) - hl(0, "BufferCurrentTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferVisible", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleIndex", { fg = c.base05, bg = c.base00 }) - hl(0, "BufferVisibleMod", { fg = c.sun, bg = c.base00 }) - hl(0, "BufferVisibleSign", { fg = c.grey, bg = c.base00 }) - hl(0, "BufferVisibleTarget", { fg = c.red, bg = c.base00, bold=true, }) - hl(0, "BufferInactive", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveIndex", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveMod", { fg = c.sun, bg = c.darker_black }) - hl(0, "BufferInactiveSign", { fg = c.grey, bg = c.darker_black }) - hl(0, "BufferInactiveTarget", { fg = c.red, bg = c.darker_black, bold=true, }) - - -- StatusLine - hl(0, "StatusLine", { fg = c.line, bg = c.statusline_bg }) - hl(0, "StatusLineNC", { fg = 'NONE', bg = c.statusline_bg }) - hl(0, "StatusLineSeparator", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTerm", { fg = c.line, bg = 'NONE' }) - hl(0, "StatusLineTermNC", { fg = c.line, bg = 'NONE' }) - - -- IndentBlankline - hl(0, "IndentBlanklineContextChar", { fg = c.grey, bg = 'NONE' }) - hl(0, "IndentBlanklineContextStart", { fg = 'NONE', bg = c.one_bg2 }) - hl(0, "IndentBlanklineChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceChar", { fg = c.line, bg = 'NONE' }) - hl(0, "IndentBlanklineSpaceCharBlankline", { fg = c.sun, bg = 'NONE' }) - - -- Dashboard - hl(0, "DashboardHeader", { fg = c.blue, bg = 'NONE' }) - hl(0, "DashboardCenter", { fg = c.purple, bg = 'NONE' }) - hl(0, "DashboardFooter", { fg = c.cyan, bg = 'NONE' }) - - -- Cmp - hl(0, "CmpItemAbbrDeprecated", { fg = c.grey, bg = 'NONE', strikethrough=true, }) - hl(0, "CmpItemAbbrMatch", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemAbbrMatchFuzzy", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindFunction", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindMethod", { fg = c.blue, bg = 'NONE' }) - hl(0, "CmpItemKindConstructor", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindClass", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEnum", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindEvent", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindInterface", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindStruct", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindVariable", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindField", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindProperty", { fg = c.red, bg = 'NONE' }) - hl(0, "CmpItemKindEnumMember", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindConstant", { fg = c.orange, bg = 'NONE' }) - hl(0, "CmpItemKindKeyword", { fg = c.purple, bg = 'NONE' }) - hl(0, "CmpItemKindModule", { fg = c.cyan, bg = 'NONE' }) - hl(0, "CmpItemKindValue", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindUnit", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindText", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindSnippet", { fg = c.yellow, bg = 'NONE' }) - hl(0, "CmpItemKindFile", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindFolder", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindColor", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindReference", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindOperator", { fg = c.base05, bg = 'NONE' }) - hl(0, "CmpItemKindTypeParameter", { fg = c.red, bg = 'NONE' }) - - -- ToggleTerm - hl(0, "ToggleTerm1FloatBorder", { fg = c.line, bg = 'NONE' }) - - -- Illuminate - hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) -end - -return theme
\ No newline at end of file diff --git a/compiled/yoru/colors/yoru.vim b/compiled/yoru/colors/yoru.vim deleted file mode 100644 index c558970..0000000 --- a/compiled/yoru/colors/yoru.vim +++ /dev/null @@ -1,4 +0,0 @@ -lua << EOF -local yoru = require("yoru") -yoru.setup({}) -EOF
\ No newline at end of file diff --git a/compiled/yoru/lua/yoru/init.lua b/compiled/yoru/lua/yoru/init.lua deleted file mode 100644 index b5f4ed5..0000000 --- a/compiled/yoru/lua/yoru/init.lua +++ /dev/null @@ -1,18 +0,0 @@ -local M = {} -local theme = require('yoru.theme') - -M.setup = function() - vim.cmd('hi clear') - - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end - - vim.o.termguicolors = true - vim.g.colors_name = 'yoru' - - theme.set_highlights() -end - -return M
\ No newline at end of file diff --git a/compiled/yoru/lua/yoru/palette.lua b/compiled/yoru/lua/yoru/palette.lua deleted file mode 100644 index 69ae8f7..0000000 --- a/compiled/yoru/lua/yoru/palette.lua +++ /dev/null @@ -1,50 +0,0 @@ -local colors = { - white = "#edeff0", - darker_black = "#060809", - black = "#0c0e0f", - lighter_black = "#121415", - one_bg = "#161819", - one_bg2 = "#1f2122", - one_bg3 = "#27292a", - grey = "#343637", - grey_fg = "#3e4041", - grey_fg2 = "#484a4b", - light_grey = "#505253", - red = "#DF5B61", - baby_pink = "#EE6A70", - pink = "#e8646a", - line = "#1b1d1e", - green = "#78B892", - vibrant_green = "#81c19b", - nord_blue = "#5A84BC", - blue = "#6791C9", - yellow = "#ecd28b", - sun = "#f6dc95", - purple = "#c58cec", - dark_purple = "#BC83E3", - teal = "#70b8ca", - orange = "#E89982", - cyan = "#67AFC1", - statusline_bg = "#101213", - lightbg = "#1d1f20", - pmenu_bg = "#78B892", - folder_bg = "#6791C9", - base00 = "#0c0e0f", - base01 = "#121415", - base02 = "#161819", - base03 = "#1f2122", - base04 = "#27292a", - base05 = "#edeff0", - base06 = "#e4e6e7", - base07 = "#f2f4f5", - base08 = "#f26e74", - base09 = "#ecd28b", - base0A = "#e79881", - base0B = "#82c29c", - base0C = "#6791C9", - base0D = "#709ad2", - base0E = "#c58cec", - base0F = "#e8646a", -} - -return colors
\ No newline at end of file |