summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/highlight-group
diff options
context:
space:
mode:
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r--lua/no-clown-fiesta/highlight-group/alpha.lua10
-rw-r--r--lua/no-clown-fiesta/highlight-group/git.lua14
-rw-r--r--lua/no-clown-fiesta/highlight-group/hop.lua12
-rw-r--r--lua/no-clown-fiesta/highlight-group/lir.lua12
-rw-r--r--lua/no-clown-fiesta/highlight-group/lsp.lua29
-rw-r--r--lua/no-clown-fiesta/highlight-group/markdown.lua31
-rw-r--r--lua/no-clown-fiesta/highlight-group/neogit.lua24
-rw-r--r--lua/no-clown-fiesta/highlight-group/nvim-cmp.lua14
-rw-r--r--lua/no-clown-fiesta/highlight-group/nvim-tree.lua38
-rw-r--r--lua/no-clown-fiesta/highlight-group/statusline.lua13
-rw-r--r--lua/no-clown-fiesta/highlight-group/telescope.lua12
-rw-r--r--lua/no-clown-fiesta/highlight-group/treesitter.lua82
-rw-r--r--lua/no-clown-fiesta/highlight-group/whichkey.lua13
13 files changed, 0 insertions, 304 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/alpha.lua b/lua/no-clown-fiesta/highlight-group/alpha.lua
deleted file mode 100644
index 167019a..0000000
--- a/lua/no-clown-fiesta/highlight-group/alpha.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- AlphaHeader = { fg = palette.gray_blue },
- AlphaButtons = { fg = palette.medium_gray },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/git.lua b/lua/no-clown-fiesta/highlight-group/git.lua
deleted file mode 100644
index 4c71de3..0000000
--- a/lua/no-clown-fiesta/highlight-group/git.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- SignAdd = { fg = palette.sign_add },
- SignChange = { fg = palette.sign_change },
- SignDelete = { fg = palette.sign_delete },
- GitSignsAdd = { fg = palette.sign_add },
- GitSignsChange = { fg = palette.sign_change },
- GitSignsDelete = { fg = palette.sign_delete },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/hop.lua b/lua/no-clown-fiesta/highlight-group/hop.lua
deleted file mode 100644
index caa16b2..0000000
--- a/lua/no-clown-fiesta/highlight-group/hop.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- HopNextKey = { fg = palette.cyan, bold = true },
- HopNextKey1 = { fg = palette.red, bold = true },
- HopNextKey2 = { fg = palette.gray_blue },
- HopUnmatched = { fg = palette.gray },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/lir.lua b/lua/no-clown-fiesta/highlight-group/lir.lua
deleted file mode 100644
index 47071b7..0000000
--- a/lua/no-clown-fiesta/highlight-group/lir.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- LirFloatNormal = { fg = palette.fg, bg = palette.alt_bg },
- LirDir = { fg = palette.white },
- LirSymLink = { fg = palette.cyan },
- LirEmptyDirText = { fg = palette.medium_gray },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/lsp.lua b/lua/no-clown-fiesta/highlight-group/lsp.lua
deleted file mode 100644
index face8d3..0000000
--- a/lua/no-clown-fiesta/highlight-group/lsp.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- LspReferenceRead = { bg = "#36383F" },
- LspReferenceText = { bg = "#36383F" },
- LspReferenceWrite = { bg = "#36383f" },
-
- DiagnosticError = { fg = palette.error },
- DiagnosticWarn = { fg = palette.warning },
- DiagnosticInfo = { fg = palette.info },
- DiagnosticHint = { fg = palette.hint },
-
- DiagnosticVirtualTextError = { fg = palette.error },
- DiagnosticVirtualTextWarn = { fg = palette.warning },
- DiagnosticVirtualTextInfo = { fg = palette.info },
- DiagnosticVirtualTextHint = { fg = palette.hint },
-
- DiagnosticUnderlineError = { undercurl = true, sp = palette.error },
- DiagnosticUnderlineWarn = { undercurl = true, sp = palette.warning },
- DiagnosticUnderlineInfo = { undercurl = true, sp = palette.info },
- DiagnosticUnderlineHint = { undercurl = true, sp = palette.hint },
-
- LspSignatureActiveParameter = { bg = palette.alt_bg, bold = true },
- LspCodeLens = { fg = palette.comment },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/markdown.lua b/lua/no-clown-fiesta/highlight-group/markdown.lua
deleted file mode 100644
index 6147a25..0000000
--- a/lua/no-clown-fiesta/highlight-group/markdown.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- markdownBlockquote = { fg = palette.accent },
- markdownBold = { fg = palette.yellow, bold = true },
- markdownCode = { fg = palette.green },
- markdownCodeBlock = { fg = palette.green },
- markdownCodeDelimiter = { fg = palette.green },
- markdownH1 = { fg = palette.blue },
- markdownH2 = { fg = palette.blue },
- markdownH3 = { fg = palette.blue },
- markdownH4 = { fg = palette.blue },
- markdownH5 = { fg = palette.blue },
- markdownH6 = { fg = palette.blue },
- markdownHeadingDelimiter = { fg = palette.red },
- markdownHeadingRule = { fg = palette.accent },
- markdownId = { fg = palette.purple },
- markdownIdDeclaration = { fg = palette.blue },
- markdownIdDelimiter = { fg = palette.light_gray },
- markdownLinkDelimiter = { fg = palette.light_gray },
- markdownItalic = { italic = true },
- markdownLinkText = { fg = palette.blue },
- markdownListMarker = { fg = palette.red },
- markdownOrderedListMarker = { fg = palette.red },
- markdownRule = { fg = palette.accent },
- markdownUrl = { fg = palette.cyan, underline = true },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/neogit.lua b/lua/no-clown-fiesta/highlight-group/neogit.lua
deleted file mode 100644
index 14d9fb1..0000000
--- a/lua/no-clown-fiesta/highlight-group/neogit.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- NeogitNotificationInfo = { fg = palette.sign_add },
- NeogitNotificationWarning = { fg = palette.warning },
- NeogitNotificationError = { fg = palette.sign_delete },
- NeogitDiffAddHighlight = {
- fg = palette.sign_add,
- bg = palette.neogit_light_green,
- },
- NeogitDiffDeleteHighlight = {
- fg = palette.sign_delete,
- bg = palette.neogit_light_red,
- },
- NeogitDiffpaletteontextHighlight = { fg = palette.fg, bg = palette.accent },
- NeogitHunkHeader = { fg = palette.fg, bg = palette.alt_bg },
- NeogitHunkHeaderHighlight = { fg = palette.fg, bg = palette.gray },
- NeogitDiffAdd = { fg = palette.sign_add, bg = palette.neogit_green },
- NeogitDiffDelete = { fg = palette.sign_delete, bg = palette.neogit_red },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/nvim-cmp.lua b/lua/no-clown-fiesta/highlight-group/nvim-cmp.lua
deleted file mode 100644
index 364af5b..0000000
--- a/lua/no-clown-fiesta/highlight-group/nvim-cmp.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- CmpItemAbbr = { fg = palette.fg },
- CmpItemAbbrDeprecated = { fg = palette.red },
- CmpItemAbbrMatch = { fg = palette.orange },
- CmpItemAbbrMatchFuzzy = { fg = palette.orange },
- CmpItemMenu = { fg = palette.medium_gray },
- CmpItemKind = { fg = palette.light_gray },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/nvim-tree.lua b/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
deleted file mode 100644
index c110435..0000000
--- a/lua/no-clown-fiesta/highlight-group/nvim-tree.lua
+++ /dev/null
@@ -1,38 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- NvimTreeFolderIcon = { fg = palette.white },
- NvimTreeIndentMarker = { fg = palette.alt_bg },
- NvimTreeNormal = { fg = palette.light_gray, bg = palette.alt_bg },
- NvimTreeVertSplit = { fg = palette.alt_bg, bg = palette.alt_bg },
- NvimTreeFolderName = { fg = palette.white },
- NvimTreeOpenedFolderName = { fg = palette.white, bold = true },
- NvimTreeEmptyFolderName = { fg = palette.medium_gray },
- NvimTreeGitIgnored = { fg = palette.medium_gray },
- NvimTreeImageFile = { fg = palette.light_gray },
- NvimTreeSpecialFile = { fg = palette.orange },
- NvimTreeEndOfBuffer = { fg = palette.alt_bg },
- NvimTreeCursorLine = { bg = palette.accent },
- NvimTreeGitignoreIcon = { fg = palette.red },
- NvimTreeGitStaged = { fg = palette.cyan },
- NvimTreeGitNew = { fg = palette.cyan },
- NvimTreeGitRenamed = { fg = palette.cyan },
- NvimTreeGitDeleted = { fg = palette.sign_delete },
- NvimTreeGitMerge = { fg = palette.info },
- NvimTreeGitDirty = { fg = palette.info },
- NvimTreeSymlink = { fg = palette.cyan },
- NvimTreeRootFolder = { fg = palette.fg, bold = true },
- NvimTreeExecFile = { fg = palette.green },
- NvimTreeStatusLine = { fg = palette.alt_bg, bg = palette.alt_bg },
- NvimTreeStatusLineNC = { fg = palette.alt_bg, bg = palette.alt_bg },
- NvimTreeStatusNC = { fg = palette.alt_bg, bg = palette.alt_bg },
- NvimTreeLspDiagnosticsErr = { fg = palette.error },
- NvimTreeLspDiagnosticsError = { fg = palette.error },
- NvimTreeLspDiagnosticsHint = { fg = palette.hint },
- NvimTreeLspDiagnosticsInformation = { fg = palette.info },
- NvimTreeLspDiagnosticsWarning = { fg = palette.warning },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/statusline.lua b/lua/no-clown-fiesta/highlight-group/statusline.lua
deleted file mode 100644
index ede108a..0000000
--- a/lua/no-clown-fiesta/highlight-group/statusline.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- StatusLine = { fg = palette.gray, bg = palette.bg },
- StatusLineNC = { fg = palette.alt_bg, bg = palette.alt_bg },
- StatusLineSeparator = { fg = palette.bg },
- StatusLineTerm = { fg = palette.bg },
- StatusLineTermNC = { fg = palette.bg },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/telescope.lua b/lua/no-clown-fiesta/highlight-group/telescope.lua
deleted file mode 100644
index 24e573c..0000000
--- a/lua/no-clown-fiesta/highlight-group/telescope.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- TelescopeNormal = { fg = palette.fg, bg = palette.bg },
- TelescopeSelection = { fg = palette.fg, bg = palette.accent },
- TelescopeMatching = { fg = palette.info, bold = true },
- TelescopeBorder = { fg = palette.fg, bg = palette.bg },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua
deleted file mode 100644
index 6217cb7..0000000
--- a/lua/no-clown-fiesta/highlight-group/treesitter.lua
+++ /dev/null
@@ -1,82 +0,0 @@
-local M = {}
-
-local unpack = unpack
-
-function M.highlight(palette, options)
- return {
- ["@comment"] = vim.tbl_extend(
- "force",
- { fg = palette.medium_gray },
- options.styles.comments
- ),
- ["@annotation"] = { fg = palette.white },
- ["@attribute"] = { fg = palette.white },
- ["@constructor"] = { fg = palette.cyan },
- ["@type"] = vim.tbl_extend("force", { fg = palette.white }, options.styles.type),
- ["@type.builtin"] = { fg = palette.white },
- ["@conditional"] = { fg = palette.gray_blue },
- ["@exception"] = { fg = palette.red },
- ["@include"] = { fg = palette.red },
- ["@keyword"] = vim.tbl_extend(
- "force",
- { fg = palette.gray_blue },
- options.styles.keywords
- ),
- ["@keyword.function"] = vim.tbl_extend(
- "force",
- { fg = palette.gray_blue },
- options.styles.keywords
- ),
- ["@label"] = { fg = palette.white },
- ["@namespace"] = { fg = palette.white },
- ["@repeat"] = { fg = palette.gray_blue },
- ["@constant"] = { fg = palette.white },
- ["@const.builtin"] = { fg = palette.red },
- ["@float"] = { fg = palette.red },
- ["@number"] = { fg = palette.red },
- ["@boolean"] = { fg = palette.red },
- ["@character"] = { fg = palette.light_green },
- ["@error"] = { fg = palette.error },
- ["@function"] = vim.tbl_extend(
- "force",
- { fg = palette.cyan },
- options.styles.functions
- ),
- ["@function.builtin"] = { fg = palette.cyan },
- ["@method"] = { fg = palette.cyan },
- ["@const.macro"] = { fg = palette.cyan },
- ["@function.macro"] = { fg = palette.cyan },
- ["@variable"] = vim.tbl_extend(
- "force",
- { fg = palette.white },
- options.styles.variables
- ),
- ["@variable.builtin"] = { fg = palette.white },
- ["@property"] = { fg = palette.white },
- ["@operator"] = { fg = palette.white },
- ["@field"] = { fg = palette.white },
- ["@parameter"] = { fg = palette.white },
- ["@parameter.reference"] = { fg = palette.white },
- ["@symbol"] = { fg = palette.medium_gray },
- ["@text"] = { fg = palette.fg },
- ["@punctuation.delimiter"] = { fg = palette.white },
- ["@tag.delimiter"] = { fg = palette.white },
- ["@punctuation.bracket"] = { fg = palette.white },
- ["@punctuation.special"] = { fg = palette.medium_gray },
- ["@string"] = { fg = palette.medium_gray_blue },
- ["@string.regex"] = { fg = palette.medium_gray_blue },
- ["@string.escape"] = { fg = palette.medium_gray_blue },
- ["@tag"] = { fg = palette.pale_purple },
- ["@emphasis"] = { italic = true },
- ["@underline"] = { underline = true },
- ["@title"] = { fg = palette.medium_gray },
- ["@literal"] = { fg = palette.medium_gray },
- ["@uri"] = { fg = palette.cyan, underline = true },
- ["@keyword.operator"] = { fg = palette.gray_blue },
- ["@structure"] = { fg = palette.purple_test },
- ["@strong"] = { fg = palette.medium_gray },
- ["@query.linter.error"] = { fg = palette.warning },
- }
-end
-
-return M
diff --git a/lua/no-clown-fiesta/highlight-group/whichkey.lua b/lua/no-clown-fiesta/highlight-group/whichkey.lua
deleted file mode 100644
index 66ac153..0000000
--- a/lua/no-clown-fiesta/highlight-group/whichkey.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local M = {}
-
-function M.highlight(palette)
- return {
- WhichKey = { fg = palette.light_gray },
- WhichKeySeperator = { fg = palette.gray },
- WhichKeyGroup = { fg = palette.red },
- WhichKeyDesc = { fg = palette.light_gray },
- WhichKeyFloat = { bg = palette.bg },
- }
-end
-
-return M