diff options
| author | notken12 <kendotzhou@gmail.com> | 2022-09-28 08:54:42 -0400 |
|---|---|---|
| committer | notken12 <kendotzhou@gmail.com> | 2022-09-28 08:54:42 -0400 |
| commit | fdb7707dbfbc284a991faf8fed99b1327c38901a (patch) | |
| tree | 5b3e2d71c344edc8c59f55fb9c7eae5252d59aab | |
| parent | gitignore (diff) | |
fix yoru and ayu dark themes
89 files changed, 1298 insertions, 127 deletions
diff --git a/colors/ayu_dark.vim b/colors/ayu_dark.vim new file mode 100644 index 0000000..c3a4fa3 --- /dev/null +++ b/colors/ayu_dark.vim @@ -0,0 +1,4 @@ +lua << EOF +local ayu_dark = require("ayu_dark") +ayu_dark.setup({}) +EOF
\ No newline at end of file diff --git a/lua/aquarium/theme.lua b/lua/aquarium/theme.lua index 1b2e9dd..b6968d0 100644 --- a/lua/aquarium/theme.lua +++ b/lua/aquarium/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/ayu-dark/theme.lua b/lua/ayu-dark/theme.lua index df00b84..b8be472 100644 --- a/lua/ayu-dark/theme.lua +++ b/lua/ayu-dark/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/ayu_dark/init.lua b/lua/ayu_dark/init.lua new file mode 100644 index 0000000..338bd60 --- /dev/null +++ b/lua/ayu_dark/init.lua @@ -0,0 +1,18 @@ +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/lua/ayu_dark/palette.lua b/lua/ayu_dark/palette.lua new file mode 100644 index 0000000..da89946 --- /dev/null +++ b/lua/ayu_dark/palette.lua @@ -0,0 +1,50 @@ +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/lua/ayu_dark/theme.lua b/lua/ayu_dark/theme.lua new file mode 100644 index 0000000..d10cc9d --- /dev/null +++ b/lua/ayu_dark/theme.lua @@ -0,0 +1,342 @@ + +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", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) +end + +return theme
\ No newline at end of file diff --git a/lua/blossom/theme.lua b/lua/blossom/theme.lua index 3d77b24..d1b94ce 100644 --- a/lua/blossom/theme.lua +++ b/lua/blossom/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/catppuccin/theme.lua b/lua/catppuccin/theme.lua index 3569039..362f74b 100644 --- a/lua/catppuccin/theme.lua +++ b/lua/catppuccin/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/catppuccin_latte/theme.lua b/lua/catppuccin_latte/theme.lua index 04e4d4f..58ef6c0 100644 --- a/lua/catppuccin_latte/theme.lua +++ b/lua/catppuccin_latte/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/chadracula/theme.lua b/lua/chadracula/theme.lua index c88d7e4..947382e 100644 --- a/lua/chadracula/theme.lua +++ b/lua/chadracula/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/chadtain/theme.lua b/lua/chadtain/theme.lua index d7d2443..7e80d97 100644 --- a/lua/chadtain/theme.lua +++ b/lua/chadtain/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/chocolate/theme.lua b/lua/chocolate/theme.lua index ed09f53..6552a75 100644 --- a/lua/chocolate/theme.lua +++ b/lua/chocolate/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/decay/theme.lua b/lua/decay/theme.lua index b96ad38..c4d5b6c 100644 --- a/lua/decay/theme.lua +++ b/lua/decay/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/doomchad/theme.lua b/lua/doomchad/theme.lua index fbbf722..b920799 100644 --- a/lua/doomchad/theme.lua +++ b/lua/doomchad/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/everforest/theme.lua b/lua/everforest/theme.lua index a8fdee9..efbc1e5 100644 --- a/lua/everforest/theme.lua +++ b/lua/everforest/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/everforest_light/theme.lua b/lua/everforest_light/theme.lua index ff7b119..5abc737 100644 --- a/lua/everforest_light/theme.lua +++ b/lua/everforest_light/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/gatekeeper/theme.lua b/lua/gatekeeper/theme.lua index a181579..9be96d1 100644 --- a/lua/gatekeeper/theme.lua +++ b/lua/gatekeeper/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/gruvbox/theme.lua b/lua/gruvbox/theme.lua index d988c45..9141003 100644 --- a/lua/gruvbox/theme.lua +++ b/lua/gruvbox/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/gruvbox_light/theme.lua b/lua/gruvbox_light/theme.lua index ba1ceb8..efcf088 100644 --- a/lua/gruvbox_light/theme.lua +++ b/lua/gruvbox_light/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/gruvchad/theme.lua b/lua/gruvchad/theme.lua index d0d7cd4..3445afd 100644 --- a/lua/gruvchad/theme.lua +++ b/lua/gruvchad/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/jellybeans/theme.lua b/lua/jellybeans/theme.lua index 0217719..7eb7ff3 100644 --- a/lua/jellybeans/theme.lua +++ b/lua/jellybeans/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/kanagawa/theme.lua b/lua/kanagawa/theme.lua index 86af241..3a789e4 100644 --- a/lua/kanagawa/theme.lua +++ b/lua/kanagawa/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/monekai/theme.lua b/lua/monekai/theme.lua index 14beaa6..0f3bfca 100644 --- a/lua/monekai/theme.lua +++ b/lua/monekai/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/mountain/theme.lua b/lua/mountain/theme.lua index 27a2ba8..dceedc6 100644 --- a/lua/mountain/theme.lua +++ b/lua/mountain/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/nightfox/theme.lua b/lua/nightfox/theme.lua index d81ab87..ee250dd 100644 --- a/lua/nightfox/theme.lua +++ b/lua/nightfox/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/nightlamp/theme.lua b/lua/nightlamp/theme.lua index 430cc0a..45304b2 100644 --- a/lua/nightlamp/theme.lua +++ b/lua/nightlamp/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/nightowl/theme.lua b/lua/nightowl/theme.lua index b3a1fc5..ab0404a 100644 --- a/lua/nightowl/theme.lua +++ b/lua/nightowl/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/nord/theme.lua b/lua/nord/theme.lua index 3879ce6..1c7d9a4 100644 --- a/lua/nord/theme.lua +++ b/lua/nord/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/one_light/theme.lua b/lua/one_light/theme.lua index a0e11b6..9c2d9e3 100644 --- a/lua/one_light/theme.lua +++ b/lua/one_light/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/onedark/theme.lua b/lua/onedark/theme.lua index 6d1e3e9..95fd947 100644 --- a/lua/onedark/theme.lua +++ b/lua/onedark/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/onenord/theme.lua b/lua/onenord/theme.lua index aed083b..94c7e09 100644 --- a/lua/onenord/theme.lua +++ b/lua/onenord/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/onenord_light/theme.lua b/lua/onenord_light/theme.lua index 4185d2d..483887c 100644 --- a/lua/onenord_light/theme.lua +++ b/lua/onenord_light/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/palenight/theme.lua b/lua/palenight/theme.lua index 1c78638..d0aaed8 100644 --- a/lua/palenight/theme.lua +++ b/lua/palenight/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/pastelDark/theme.lua b/lua/pastelDark/theme.lua index b5ee6aa..4f15e91 100644 --- a/lua/pastelDark/theme.lua +++ b/lua/pastelDark/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/radium/theme.lua b/lua/radium/theme.lua index b76b148..cefb268 100644 --- a/lua/radium/theme.lua +++ b/lua/radium/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/rosepine/theme.lua b/lua/rosepine/theme.lua index 775aca8..3d63756 100644 --- a/lua/rosepine/theme.lua +++ b/lua/rosepine/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/rxyhn/theme.lua b/lua/rxyhn/theme.lua index 5a3c785..95997b4 100644 --- a/lua/rxyhn/theme.lua +++ b/lua/rxyhn/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/sweetpastel/theme.lua b/lua/sweetpastel/theme.lua index d2b98f5..2e2296a 100644 --- a/lua/sweetpastel/theme.lua +++ b/lua/sweetpastel/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/tokyodark/theme.lua b/lua/tokyodark/theme.lua index 3634d38..47310f7 100644 --- a/lua/tokyodark/theme.lua +++ b/lua/tokyodark/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index dbab02e..c5058ba 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/tomorrow_night/theme.lua b/lua/tomorrow_night/theme.lua index 16d4225..ab1fc21 100644 --- a/lua/tomorrow_night/theme.lua +++ b/lua/tomorrow_night/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/vscode_dark/theme.lua b/lua/vscode_dark/theme.lua index 1974cbd..fa8a3b5 100644 --- a/lua/vscode_dark/theme.lua +++ b/lua/vscode_dark/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/wombat/theme.lua b/lua/wombat/theme.lua index 75b3a20..d90b1e2 100644 --- a/lua/wombat/theme.lua +++ b/lua/wombat/theme.lua @@ -336,7 +336,7 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { link = 'IlluminatedWordText' }) + hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file diff --git a/lua/yoru/palette.lua b/lua/yoru/palette.lua index 69ae8f7..ab4941c 100644 --- a/lua/yoru/palette.lua +++ b/lua/yoru/palette.lua @@ -2,6 +2,7 @@ local colors = { white = "#edeff0", darker_black = "#060809", black = "#0c0e0f", + black2 = "#0d181c", lighter_black = "#121415", one_bg = "#161819", one_bg2 = "#1f2122", diff --git a/lua/yoru/theme.lua b/lua/yoru/theme.lua new file mode 100644 index 0000000..ce098b9 --- /dev/null +++ b/lua/yoru/theme.lua @@ -0,0 +1,342 @@ + +local c = require('yoru.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", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) +end + +return theme
\ No newline at end of file diff --git a/src/template-nvchad.toml b/src/template-nvchad.toml index ca696c3..23c797b 100644 --- a/src/template-nvchad.toml +++ b/src/template-nvchad.toml @@ -363,5 +363,5 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' -IlluminatedWordWrite = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' +IlluminatedWordWrite = '- base02 - -' diff --git a/src/themes/ayu-dark.lua b/src/themes/ayu_dark.lua index bb41785..bb41785 100644 --- a/src/themes/ayu-dark.lua +++ b/src/themes/ayu_dark.lua diff --git a/src/themes/yoru.lua b/src/themes/yoru.lua index c58d8ad..95d9286 100644 --- a/src/themes/yoru.lua +++ b/src/themes/yoru.lua @@ -1,55 +1,56 @@ local M = {} M.base_30 = { - white = "#edeff0", - darker_black = "#060809", - black = "#0c0e0f", -- nvim bg - 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", -- for lines like vertsplit - 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", + white = "#edeff0", + darker_black = "#060809", + black = "#0c0e0f", -- nvim bg + black2 = "#0d181c", + 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", -- for lines like vertsplit + 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", } M.base_16 = { - 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", + 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", } vim.opt.bg = "dark" diff --git a/templates/aquarium.toml b/templates/aquarium.toml index 9e55996..a49cf64 100644 --- a/templates/aquarium.toml +++ b/templates/aquarium.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/ayu-dark.toml b/templates/ayu-dark.toml index b03e8b4..2a2100b 100644 --- a/templates/ayu-dark.toml +++ b/templates/ayu-dark.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/ayu_dark.toml b/templates/ayu_dark.toml new file mode 100644 index 0000000..cd15ac8 --- /dev/null +++ b/templates/ayu_dark.toml @@ -0,0 +1,412 @@ +[information] +name="ayu_dark" +author="Ken Zhou <kendotzhou@gmail.com>" +background="dark" + +[palette] +white = "#ced4df" +darker_black = "#05080e" +black = "#0B0E14" # nvim bg +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" # for lines like vertsplit +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" + +[highlights] +Normal = 'base05 base00' +SignColumn = 'base03 - - -' +MsgArea = 'base05 base00' +ModeMsg = 'base0B' +MsgSeparator = 'base05 base00' +SpellBad = '- - c base08' +SpellCap = '- - c base0D' +SpellLocal = '- - c base0C' +SpellRare = '- - c base0D' +NormalNC = 'base05 base00' +Pmenu = '- one_bg' +PmenuSel = 'black pmenu_bg' +WildMenu = 'base08 base0A' +CursorLineNr = 'white' +Comment = 'grey_fg' +Folded = 'base03 base01' +FoldColumn = 'base0C base01' +LineNr = 'grey' +FloatBorder = 'blue' +# Whitespace = 'base00 -' +VertSplit = 'line' +CursorLine = '- base01' +CursorColumn = '- base01' +ColorColumn = '- base01' +NormalFloat = '- darker_black' +Visual = '- base02' +VisualNOS = 'base08 -' +WarningMsg = 'base08' +DiffAdd = 'vibrant_green' +DiffChange = 'blue' +DiffDelete = 'red' +QuickFixLine = '- base01 - -' +PmenuSbar = '- one_bg' +PmenuThumb = '- grey' +MatchWord = 'white grey' +MatchParen = 'link:MatchWord' +# MatchWordCur = '- - u' +# MatchParenCur = '- - u' +Cursor = 'base00 base05' +# lCursor = 'base05 base00' +# CursorIM = 'base05 base00' +# TermCursor = 'base05 base00' +# TermCursorNC = 'base05 base00' +Conceal = '- -' +Directory = 'base0D' +SpecialKey = 'base03' +Title = 'base0D - - -' +ErrorMsg = 'base08 base00' +Search = 'base01 base0A' +IncSearch = 'base01 base09' +Substitute = 'base01 base0A - -' +MoreMsg = 'base0B' +Question = 'base0D' +# EndOfBuffer = 'base00' +NonText = 'base03' +Variable = 'base05' +String = 'base0B' +Character = 'base08' +Constant = 'base08' +Number = 'base09' +Boolean = 'base09' +Float = 'base09' +Identifier = 'base08 - - -' +Function = 'base0D' +Operator = 'base05 - - -' +Type = 'base0A - - -' +StorageClass = 'base0A' +Structure = 'base0E' +Typedef = 'base0A' +Keyword = 'base0E' +Statement = 'base08' +Conditional = 'base0E' +Repeat = 'base0A' +Label = 'base0A' +Exception = 'base08' +Include = 'base0D' +PreProc = 'base0A' +Define = 'base0E - - -' +Macro = 'base08' +# PreCondit = 'purple' +Special = 'base0C' +SpecialChar = 'base0F' +Tag = 'base0A' +Debug = 'base08' +# Delimiter = 'grey -' +# SpecialComment = 'grey_fg' +Underlined = 'base0B' +Bold = '- - b' +Italic = '- - i' +Ignore = 'cyan base00 b' +Todo = 'base0A base01' +Error = 'base00 base08' +TabLine = 'light_grey line' +TabLineSel = 'white line' +TabLineFill = 'line line' + +[Treesitter] +TSComment = 'link:Comment' +TSAnnotation = 'base0F' +TSAttribute = 'base0A' +TSConstructor = 'base0C' +# TSType = 'cyan' +TSTypeBuiltin = 'base0A' +TSConditional = 'link:Conditional' +TSException = 'base08' +TSInclude = 'link:Include' +TSKeywordReturn = 'base0E' +TSKeyword = 'base0E' +TSKeywordFunction = 'base0E' +# TSLabel = 'cyan' +TSNamespace = 'base08' +# TSRepeat = 'yellow' +# TSConstant = 'orange' +TSConstBuiltin = 'base09' +TSFloat = 'base09' +# TSNumber = 'orange' +# TSBoolean = 'orange' +TSCharacter = 'base08' +TSError = 'base08' +TSFunction = 'base0D' +TSFuncBuiltin = 'base0D' +TSMethod = 'base0D' +TSConstMacro = 'base08' +TSFuncMacro = 'base08' +TSVariable = 'base05' +TSVariableBuiltin = 'base09' +TSProperty = 'base08' +TSField = 'base0D' +TSParameter = 'base08' +TSParameterReference = 'base05' +TSSymbol = 'base0B' +TSText = 'base05' +# TSOperator = 'base05' +TSPunctDelimiter = 'base0F' +TSTagDelimiter = 'base0F' +TSTagAttribute = 'link:TSProperty' +TSPunctBracket = 'base0F' +TSPunctSpecial = 'base08' +# TSString = 'green' +TSStringRegex = 'base0C' +TSStringEscape = 'base0C' +# TSTag = 'blue' +TSEmphasis = 'base09' +# TSUnderline = '- - u' +# TSTitle = 'base05 - -' +TSLiteral = 'base09' +TSURI = 'base09' +TSKeywordOperator = 'base0E' +# TSStructure = 'cyan' +TSStrong = '- - b' +# TSQueryLinterError = 'base09' +TreesitterContext = 'link:CursorLine' + +[markdown] +markdownBlockquote = 'green' +markdownCode = 'orange' +markdownCodeBlock = 'orange' +markdownCodeDelimiter = 'orange' +markdownH1 = 'blue' +markdownH2 = 'blue' +markdownH3 = 'blue' +markdownH4 = 'blue' +markdownH5 = 'blue' +markdownH6 = 'blue' +markdownHeadingDelimiter = 'blue' +markdownHeadingRule = 'base05 - b' +markdownId = 'purple' +markdownIdDeclaration = 'blue' +markdownIdDelimiter = 'light_grey' +markdownLinkDelimiter = 'light_grey' +markdownBold = 'blue - b' +markdownItalic = '- - i' +markdownBoldItalic = 'yellow - bi' +markdownListMarker = 'blue' +markdownOrderedListMarker = 'blue' +markdownRule = 'base01' +markdownUrl = 'cyan - u' +markdownLinkText = 'blue' +markdownFootnote = 'orange' +markdownFootnoteDefinition = 'orange' +markdownEscape = 'yellow' + +[Whichkey] +WhichKey = 'purple' +WhichKeySeperator = 'green' +WhichKeyGroup = 'blue' +WhichKeyDesc = 'cyan' +WhichKeyFloat = '- base01' + +[Git] +SignAdd = 'green' +SignChange = 'blue' +SignDelete = 'red' +GitSignsAdd = 'green' +GitSignsChange = 'blue' +GitSignsDelete = 'red' + +[LSP] +DiagnosticError = 'base08' +DiagnosticWarning = 'base09' +DiagnosticHint = 'purple' +DiagnosticWarn = 'yellow' +DiagnosticInfo = 'green' +LspDiagnosticsDefaultError = 'base08' +LspDiagnosticsDefaultWarning = 'base09' +LspDiagnosticsDefaultInformation = 'sun' +LspDiagnosticsDefaultInfo = 'sun' +LspDiagnosticsDefaultHint = 'purple' +LspDiagnosticsVirtualTextError = 'base08' +LspDiagnosticsVirtualTextWarning = 'base09' +LspDiagnosticsVirtualTextInformation = 'sun' +LspDiagnosticsVirtualTextInfo = 'sun' +LspDiagnosticsVirtualTextHint = 'purple' +LspDiagnosticsFloatingError = 'base08' +LspDiagnosticsFloatingWarning = 'base09' +LspDiagnosticsFloatingInformation = 'sun' +LspDiagnosticsFloatingInfo = 'sun' +LspDiagnosticsFloatingHint = 'purple' +DiagnosticSignError = 'base08' +DiagnosticSignWarning = 'base09' +DiagnosticSignInformation = 'sun' +DiagnosticSignInfo = 'sun' +DiagnosticSignHint = 'purple' +LspDiagnosticsSignError = 'base08' +LspDiagnosticsSignWarning = 'base09' +LspDiagnosticsSignInformation = 'sun' +LspDiagnosticsSignInfo = 'sun' +LspDiagnosticsSignHint = 'purple' +LspDiagnosticsError = 'base08' +LspDiagnosticsWarning = 'base09' +LspDiagnosticsInformation = 'sun' +LspDiagnosticsInfo = 'sun' +LspDiagnosticsHint = 'purple' +LspDiagnosticsUnderlineError = '- - u' +LspDiagnosticsUnderlineWarning = '- - u' +LspDiagnosticsUnderlineInformation = '- - u' +LspDiagnosticsUnderlineInfo = '- - u' +LspDiagnosticsUnderlineHint = '- - u' +LspReferenceRead = '- #2e303b' +LspReferenceText = '- #2e303b' +LspReferenceWrite = '- #2e303b' +LspCodeLens = 'base04 - i' +LspCodeLensSeparator = 'base04 - i' + +[Telescope] +TelescopeNormal = '- darker_black' +TelescopePreviewTitle = 'black green b' +TelescopePromptTitle = 'black red b' +TelescopeResultsTitle = 'darker_black darker_black b' +TelescopeSelection = 'white black2' +# TelescopeMatching = 'sun - b' +TelescopeBorder = 'darker_black darker_black' +TelescopePromptBorder = 'black2 black2' +TelescopePromptNormal = 'white black2' +TelescopePromptPrefix = 'red black2' +TelescopeResultsDiffAdd = 'green' +TelescopeResultsDiffChange = 'blue' +TelescopeResultsDiffDelete = 'red' + +[NvimTree] +NvimTreeFolderIcon = 'blue' +NvimTreeIndentMarker = '#c5c5c5' +NvimTreeNormal = '- darker_black' +NvimTreeVertSplit = 'darker_black darker_black' +NvimTreeFolderName = 'blue' +NvimTreeOpenedFolderName = 'blue - bi' +NvimTreeEmptyFolderName = 'grey - i' +NvimTreeGitIgnored = 'grey - i' +NvimTreeImageFile = 'light_grey' +NvimTreeSpecialFile = 'orange' +NvimTreeEndOfBuffer = 'darker_black' +NvimTreeCursorLine = '- #282b37' +NvimTreeGitignoreIcon = 'red' +NvimTreeGitStaged = 'vibrant_green' +NvimTreeGitNew = 'vibrant_green' +NvimTreeGitRenamed = 'vibrant_green' +NvimTreeGitDeleted = 'red' +NvimTreeGitMerge = 'blue' +NvimTreeGitDirty = 'blue' + +NvimTreeSymlink = 'cyan' +NvimTreeRootFolder = 'base05 - b' +NvimTreeExecFile = 'green' + +[Buffer] +BufferCurrent = 'base05 base00' +BufferCurrentIndex = 'base05 base00' +BufferCurrentMod = 'sun base00' +BufferCurrentSign = 'purple base00' +BufferCurrentTarget = 'red base00 b' + +BufferVisible = 'base05 base00' +BufferVisibleIndex = 'base05 base00' +BufferVisibleMod = 'sun base00' +BufferVisibleSign = 'grey base00' +BufferVisibleTarget = 'red base00 b' + +BufferInactive = 'grey darker_black' +BufferInactiveIndex = 'grey darker_black' +BufferInactiveMod = 'sun darker_black' +BufferInactiveSign = 'grey darker_black' +BufferInactiveTarget = 'red darker_black b' + +[StatusLine] +StatusLine = 'line statusline_bg' +StatusLineNC = '- statusline_bg' +StatusLineSeparator = 'line' +StatusLineTerm = 'line' +StatusLineTermNC = 'line' + +[IndentBlankline] +IndentBlanklineContextChar = 'grey' +IndentBlanklineContextStart = '- one_bg2' +IndentBlanklineChar = 'line' +IndentBlanklineSpaceChar = 'line' +IndentBlanklineSpaceCharBlankline = 'sun' + +[Dashboard] +DashboardHeader = 'blue' +DashboardCenter = 'purple' +DashboardFooter = 'cyan' + +[Cmp] +CmpItemAbbrDeprecated = 'grey - s' +CmpItemAbbrMatch = 'blue' +CmpItemAbbrMatchFuzzy = 'blue' +CmpItemKindFunction = 'blue' +CmpItemKindMethod = 'blue' +CmpItemKindConstructor = 'cyan' +CmpItemKindClass = 'cyan' +CmpItemKindEnum = 'cyan' +CmpItemKindEvent = 'yellow' +CmpItemKindInterface = 'cyan' +CmpItemKindStruct = 'cyan' +CmpItemKindVariable = 'red' +CmpItemKindField = 'red' +CmpItemKindProperty = 'red' +CmpItemKindEnumMember = 'orange' +CmpItemKindConstant = 'orange' +CmpItemKindKeyword = 'purple' +CmpItemKindModule = 'cyan' +CmpItemKindValue = 'base05' +CmpItemKindUnit = 'base05' +CmpItemKindText = 'base05' +CmpItemKindSnippet = 'yellow' +CmpItemKindFile = 'base05' +CmpItemKindFolder = 'base05' +CmpItemKindColor = 'base05' +CmpItemKindReference = 'base05' +CmpItemKindOperator = 'base05' +CmpItemKindTypeParameter = 'red' + +[ToggleTerm] +ToggleTerm1FloatBorder = 'line' + +[Illuminate] +IlluminatedWordText = '- base02 - -' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/blossom.toml b/templates/blossom.toml index e0d6b5e..bdb4f54 100644 --- a/templates/blossom.toml +++ b/templates/blossom.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/catppuccin.toml b/templates/catppuccin.toml index da860ce..a34ae0c 100644 --- a/templates/catppuccin.toml +++ b/templates/catppuccin.toml @@ -410,4 +410,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/catppuccin_latte.toml b/templates/catppuccin_latte.toml index eea3736..a11ee37 100644 --- a/templates/catppuccin_latte.toml +++ b/templates/catppuccin_latte.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/chadracula.toml b/templates/chadracula.toml index de3c5e1..97b61c6 100644 --- a/templates/chadracula.toml +++ b/templates/chadracula.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/chadtain.toml b/templates/chadtain.toml index 3c839ec..9d19e89 100644 --- a/templates/chadtain.toml +++ b/templates/chadtain.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/chocolate.toml b/templates/chocolate.toml index 29eb656..5e61a13 100644 --- a/templates/chocolate.toml +++ b/templates/chocolate.toml @@ -410,4 +410,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/decay.toml b/templates/decay.toml index e1a4fc3..996856b 100644 --- a/templates/decay.toml +++ b/templates/decay.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/doomchad.toml b/templates/doomchad.toml index 39273f9..8d3be76 100644 --- a/templates/doomchad.toml +++ b/templates/doomchad.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/everforest.toml b/templates/everforest.toml index ddd5a23..fc28621 100644 --- a/templates/everforest.toml +++ b/templates/everforest.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/everforest_light.toml b/templates/everforest_light.toml index 9b5da35..d83c6fc 100644 --- a/templates/everforest_light.toml +++ b/templates/everforest_light.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/gatekeeper.toml b/templates/gatekeeper.toml index a5d8084..6c34db7 100644 --- a/templates/gatekeeper.toml +++ b/templates/gatekeeper.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/gruvbox.toml b/templates/gruvbox.toml index e13d0e5..852ee46 100644 --- a/templates/gruvbox.toml +++ b/templates/gruvbox.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/gruvbox_light.toml b/templates/gruvbox_light.toml index a397335..3cc527d 100644 --- a/templates/gruvbox_light.toml +++ b/templates/gruvbox_light.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/gruvchad.toml b/templates/gruvchad.toml index 934a820..bd8d093 100644 --- a/templates/gruvchad.toml +++ b/templates/gruvchad.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/jellybeans.toml b/templates/jellybeans.toml index 1d20d25..c449e4b 100644 --- a/templates/jellybeans.toml +++ b/templates/jellybeans.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/kanagawa.toml b/templates/kanagawa.toml index bad21e7..92e5ce4 100644 --- a/templates/kanagawa.toml +++ b/templates/kanagawa.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/monekai.toml b/templates/monekai.toml index b9f297d..50fcfe9 100644 --- a/templates/monekai.toml +++ b/templates/monekai.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/mountain.toml b/templates/mountain.toml index 2372cf9..46649c4 100644 --- a/templates/mountain.toml +++ b/templates/mountain.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/nightfox.toml b/templates/nightfox.toml index 947706e..3eddf5a 100644 --- a/templates/nightfox.toml +++ b/templates/nightfox.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/nightlamp.toml b/templates/nightlamp.toml index d573ff8..427ea54 100644 --- a/templates/nightlamp.toml +++ b/templates/nightlamp.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/nightowl.toml b/templates/nightowl.toml index 115cde5..ed5f9d4 100644 --- a/templates/nightowl.toml +++ b/templates/nightowl.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/nord.toml b/templates/nord.toml index ef87607..2a386c7 100644 --- a/templates/nord.toml +++ b/templates/nord.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/one_light.toml b/templates/one_light.toml index 1df2652..0e788ff 100644 --- a/templates/one_light.toml +++ b/templates/one_light.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/onedark.toml b/templates/onedark.toml index d0901b7..888b6eb 100644 --- a/templates/onedark.toml +++ b/templates/onedark.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/onenord.toml b/templates/onenord.toml index c1b0c90..a5f0f0d 100644 --- a/templates/onenord.toml +++ b/templates/onenord.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/onenord_light.toml b/templates/onenord_light.toml index 982353f..35cb24d 100644 --- a/templates/onenord_light.toml +++ b/templates/onenord_light.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/palenight.toml b/templates/palenight.toml index 70a98d8..5f1b8c3 100644 --- a/templates/palenight.toml +++ b/templates/palenight.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/pastelDark.toml b/templates/pastelDark.toml index 2d617c7..41c7c25 100644 --- a/templates/pastelDark.toml +++ b/templates/pastelDark.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/radium.toml b/templates/radium.toml index 9afeee9..3d027a5 100644 --- a/templates/radium.toml +++ b/templates/radium.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/rosepine.toml b/templates/rosepine.toml index 1866bbd..081c916 100644 --- a/templates/rosepine.toml +++ b/templates/rosepine.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/rxyhn.toml b/templates/rxyhn.toml index 6cbd6b5..b98d041 100644 --- a/templates/rxyhn.toml +++ b/templates/rxyhn.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/sweetpastel.toml b/templates/sweetpastel.toml index 251d4a7..6c2d60e 100644 --- a/templates/sweetpastel.toml +++ b/templates/sweetpastel.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/tokyodark.toml b/templates/tokyodark.toml index 52051a3..b226fdf 100644 --- a/templates/tokyodark.toml +++ b/templates/tokyodark.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/tokyonight.toml b/templates/tokyonight.toml index 0995217..65d7eb9 100644 --- a/templates/tokyonight.toml +++ b/templates/tokyonight.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/tomorrow_night.toml b/templates/tomorrow_night.toml index 90db77d..7201e78 100644 --- a/templates/tomorrow_night.toml +++ b/templates/tomorrow_night.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/vscode_dark.toml b/templates/vscode_dark.toml index fef5fca..02b41d6 100644 --- a/templates/vscode_dark.toml +++ b/templates/vscode_dark.toml @@ -411,4 +411,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/wombat.toml b/templates/wombat.toml index 9729dac..b19882b 100644 --- a/templates/wombat.toml +++ b/templates/wombat.toml @@ -409,4 +409,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' diff --git a/templates/yoru.toml b/templates/yoru.toml index 45940c3..50ad9f0 100644 --- a/templates/yoru.toml +++ b/templates/yoru.toml @@ -7,6 +7,7 @@ background="dark" white = "#edeff0" darker_black = "#060809" black = "#0c0e0f" # nvim bg +black2 = "#0d181c" lighter_black = "#121415" one_bg = "#161819" one_bg2 = "#1f2122" @@ -409,4 +410,4 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' |