2021-04-17 19:22:55 +00:00
local util = require ( " tokyonight.util " )
2021-04-20 11:39:38 +00:00
local colors = require ( " tokyonight.colors " )
local M = { }
2022-09-05 12:06:03 +00:00
--
---@class Highlight
---@field fg string|nil
---@field bg string|nil
---@field sp string|nil
2022-09-13 14:44:55 +00:00
---@field style string|nil|Highlight
2023-09-25 08:49:41 +00:00
---@field link string|nil
2021-04-20 11:39:38 +00:00
2022-09-05 12:06:03 +00:00
---@alias Highlights table<string,Highlight>
2021-04-20 11:39:38 +00:00
2022-09-05 12:06:03 +00:00
---@return Theme
function M . setup ( )
2022-09-10 07:35:41 +00:00
local config = require ( " tokyonight.config " )
local options = config.options
2021-04-20 11:39:38 +00:00
---@class Theme
2022-09-05 18:32:31 +00:00
---@field highlights Highlights
2022-09-05 12:06:03 +00:00
local theme = {
2022-09-10 07:35:41 +00:00
config = options ,
2022-09-05 12:06:03 +00:00
colors = colors.setup ( ) ,
}
2022-09-03 21:47:25 +00:00
2021-04-20 11:39:38 +00:00
local c = theme.colors
2022-09-05 18:32:31 +00:00
theme.highlights = {
2023-06-19 21:07:50 +00:00
Foo = { bg = c.magenta2 , fg = c.fg } ,
2022-09-05 18:32:31 +00:00
2022-09-10 07:35:41 +00:00
Comment = { fg = c.comment , style = options.styles . comments } , -- any comment
2021-08-05 07:59:48 +00:00
ColorColumn = { bg = c.black } , -- used for the columns set with 'colorcolumn'
2021-08-06 08:18:04 +00:00
Conceal = { fg = c.dark5 } , -- placeholder characters substituted for concealed text (see 'conceallevel')
2021-04-25 09:42:59 +00:00
Cursor = { fg = c.bg , bg = c.fg } , -- character under the cursor
lCursor = { fg = c.bg , bg = c.fg } , -- the character under the cursor when |language-mapping| is used (see 'guicursor')
CursorIM = { fg = c.bg , bg = c.fg } , -- like Cursor, but used when in IME mode |CursorIM|
2021-04-20 11:39:38 +00:00
CursorColumn = { bg = c.bg_highlight } , -- Screen-column at the cursor, when 'cursorcolumn' is set.
CursorLine = { bg = c.bg_highlight } , -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set.
2021-04-20 23:04:52 +00:00
Directory = { fg = c.blue } , -- directory names (and other special names in listings)
2021-04-20 11:39:38 +00:00
DiffAdd = { bg = c.diff . add } , -- diff mode: Added line |diff.txt|
DiffChange = { bg = c.diff . change } , -- diff mode: Changed line |diff.txt|
DiffDelete = { bg = c.diff . delete } , -- diff mode: Deleted line |diff.txt|
2021-05-02 07:40:40 +00:00
DiffText = { bg = c.diff . text } , -- diff mode: Changed text within a changed line |diff.txt|
2021-04-20 11:39:38 +00:00
EndOfBuffer = { fg = c.bg } , -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
-- TermCursor = { }, -- cursor in a focused terminal
-- TermCursorNC= { }, -- cursor in an unfocused terminal
ErrorMsg = { fg = c.error } , -- error messages on the command line
VertSplit = { fg = c.border } , -- the column separating vertically split windows
2022-09-12 05:51:08 +00:00
WinSeparator = { fg = c.border , bold = true } , -- the column separating vertically split windows
2021-04-20 11:39:38 +00:00
Folded = { fg = c.blue , bg = c.fg_gutter } , -- line used for closed folds
2022-09-24 14:54:44 +00:00
FoldColumn = { bg = options.transparent and c.none or c.bg , fg = c.comment } , -- 'foldcolumn'
2022-09-10 07:35:41 +00:00
SignColumn = { bg = options.transparent and c.none or c.bg , fg = c.fg_gutter } , -- column where |signs| are displayed
2021-04-20 11:39:38 +00:00
SignColumnSB = { bg = c.bg_sidebar , fg = c.fg_gutter } , -- column where |signs| are displayed
2021-04-28 20:07:19 +00:00
Substitute = { bg = c.red , fg = c.black } , -- |:substitute| replacement text highlighting
2021-04-20 11:39:38 +00:00
LineNr = { fg = c.fg_gutter } , -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
CursorLineNr = { fg = c.dark5 } , -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
2022-09-12 05:51:08 +00:00
MatchParen = { fg = c.orange , bold = true } , -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
ModeMsg = { fg = c.fg_dark , bold = true } , -- 'showmode' message (e.g., "-- INSERT -- ")
2022-09-17 19:45:03 +00:00
MsgArea = { fg = c.fg_dark } , -- Area for messages and cmdline
2021-04-20 11:39:38 +00:00
-- MsgSeparator= { }, -- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg = { fg = c.blue } , -- |more-prompt|
NonText = { fg = c.dark3 } , -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
2022-09-10 07:35:41 +00:00
Normal = { fg = c.fg , bg = options.transparent and c.none or c.bg } , -- normal text
NormalNC = { fg = c.fg , bg = options.transparent and c.none or options.dim_inactive and c.bg_dark or c.bg } , -- normal text in non-current windows
2022-09-02 05:57:12 +00:00
NormalSB = { fg = c.fg_sidebar , bg = c.bg_sidebar } , -- normal text in sidebar
2022-11-07 14:09:32 +00:00
NormalFloat = { fg = c.fg_float , bg = c.bg_float } , -- Normal text in floating windows.
2021-11-30 08:07:38 +00:00
FloatBorder = { fg = c.border_highlight , bg = c.bg_float } ,
2023-05-25 06:57:30 +00:00
FloatTitle = { fg = c.border_highlight , bg = c.bg_float } ,
2021-04-20 18:49:14 +00:00
Pmenu = { bg = c.bg_popup , fg = c.fg } , -- Popup menu: normal item.
2021-04-20 11:39:38 +00:00
PmenuSel = { bg = util.darken ( c.fg_gutter , 0.8 ) } , -- Popup menu: selected item.
PmenuSbar = { bg = util.lighten ( c.bg_popup , 0.95 ) } , -- Popup menu: scrollbar.
PmenuThumb = { bg = c.fg_gutter } , -- Popup menu: Thumb of the scrollbar.
Question = { fg = c.blue } , -- |hit-enter| prompt and yes/no questions
2022-09-12 05:51:08 +00:00
QuickFixLine = { bg = c.bg_visual , bold = true } , -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
2021-04-20 11:39:38 +00:00
Search = { bg = c.bg_search , fg = c.fg } , -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
2021-04-26 05:28:33 +00:00
IncSearch = { bg = c.orange , fg = c.black } , -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
2022-10-12 06:10:58 +00:00
CurSearch = { link = " IncSearch " } ,
2021-04-20 11:39:38 +00:00
SpecialKey = { fg = c.dark3 } , -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
2022-09-12 05:51:08 +00:00
SpellBad = { sp = c.error , undercurl = true } , -- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap = { sp = c.warning , undercurl = true } , -- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal = { sp = c.info , undercurl = true } , -- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare = { sp = c.hint , undercurl = true } , -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
2021-04-20 11:39:38 +00:00
StatusLine = { fg = c.fg_sidebar , bg = c.bg_statusline } , -- status line of current window
2021-04-23 07:17:28 +00:00
StatusLineNC = { fg = c.fg_gutter , bg = c.bg_statusline } , -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
2021-04-20 11:39:38 +00:00
TabLine = { bg = c.bg_statusline , fg = c.fg_gutter } , -- tab pages line, not active tab page label
2021-04-21 06:04:57 +00:00
TabLineFill = { bg = c.black } , -- tab pages line, where there are no labels
TabLineSel = { fg = c.black , bg = c.blue } , -- tab pages line, active tab page label
2022-09-12 05:51:08 +00:00
Title = { fg = c.blue , bold = true } , -- titles for output from ":set all", ":autocmd" etc.
2021-04-20 11:39:38 +00:00
Visual = { bg = c.bg_visual } , -- Visual mode selection
VisualNOS = { bg = c.bg_visual } , -- Visual mode selection when vim is "Not Owning the Selection".
WarningMsg = { fg = c.warning } , -- warning messages
Whitespace = { fg = c.fg_gutter } , -- "nbsp", "space", "tab" and "trail" in 'listchars'
WildMenu = { bg = c.bg_visual } , -- current match in 'wildmenu' completion
-- These groups are not listed as default vim groups,
-- but they are defacto standard group names for syntax highlighting.
-- commented out groups should chain up to their "preferred" group by
-- default,
-- Uncomment and edit if you want more specific syntax highlighting.
Constant = { fg = c.orange } , -- (preferred) any constant
String = { fg = c.green } , -- a string constant: "this is a string"
Character = { fg = c.green } , -- a character constant: 'c', '\n'
-- Number = { }, -- a number constant: 234, 0xff
-- Boolean = { }, -- a boolean constant: TRUE, false
-- Float = { }, -- a floating point constant: 2.3e10
2022-09-10 07:35:41 +00:00
Identifier = { fg = c.magenta , style = options.styles . variables } , -- (preferred) any variable name
Function = { fg = c.blue , style = options.styles . functions } , -- function name (also: methods for classes)
2021-04-20 11:39:38 +00:00
Statement = { fg = c.magenta } , -- (preferred) any statement
-- Conditional = { }, -- if, then, else, endif, switch, etc.
-- Repeat = { }, -- for, do, while, etc.
-- Label = { }, -- case, default, etc.
Operator = { fg = c.blue5 } , -- "sizeof", "+", "*", etc.
2022-09-10 07:35:41 +00:00
Keyword = { fg = c.cyan , style = options.styles . keywords } , -- any other keyword
2021-04-20 11:39:38 +00:00
-- Exception = { }, -- try, catch, throw
PreProc = { fg = c.cyan } , -- (preferred) generic Preprocessor
-- Include = { }, -- preprocessor #include
-- Define = { }, -- preprocessor #define
-- Macro = { }, -- same as Define
-- PreCondit = { }, -- preprocessor #if, #else, #endif, etc.
Type = { fg = c.blue1 } , -- (preferred) int, long, char, etc.
-- StorageClass = { }, -- static, register, volatile, etc.
-- Structure = { }, -- struct, union, enum, etc.
-- Typedef = { }, -- A typedef
Special = { fg = c.blue1 } , -- (preferred) any special symbol
-- SpecialChar = { }, -- special character in a constant
-- Tag = { }, -- you can use CTRL-] on this
-- Delimiter = { }, -- character that needs attention
-- SpecialComment= { }, -- special things inside a comment
2023-04-18 18:25:35 +00:00
Debug = { fg = c.orange } , -- debugging statements
2021-04-20 11:39:38 +00:00
2022-09-12 05:51:08 +00:00
Underlined = { underline = true } , -- (preferred) text that stands out, HTML links
Bold = { bold = true } ,
Italic = { italic = true } ,
2021-04-20 11:39:38 +00:00
-- ("Ignore", below, may be invisible...)
2021-04-23 07:17:28 +00:00
-- Ignore = { }, -- (preferred) left blank, hidden |hl-Ignore|
2021-04-20 11:39:38 +00:00
Error = { fg = c.error } , -- (preferred) any erroneous construct
Todo = { bg = c.yellow , fg = c.bg } , -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
qfLineNr = { fg = c.dark5 } ,
qfFileName = { fg = c.blue } ,
2022-09-12 05:51:08 +00:00
htmlH1 = { fg = c.magenta , bold = true } ,
htmlH2 = { fg = c.blue , bold = true } ,
2021-05-11 11:21:48 +00:00
2022-09-12 05:51:08 +00:00
-- mkdHeading = { fg = c.orange, bold = true },
2021-05-21 10:19:26 +00:00
-- mkdCode = { bg = c.terminal_black, fg = c.fg },
2021-05-11 11:21:48 +00:00
mkdCodeDelimiter = { bg = c.terminal_black , fg = c.fg } ,
2022-09-12 05:51:08 +00:00
mkdCodeStart = { fg = c.teal , bold = true } ,
mkdCodeEnd = { fg = c.teal , bold = true } ,
-- mkdLink = { fg = c.blue, underline = true },
2021-05-21 10:19:26 +00:00
2022-09-12 05:51:08 +00:00
markdownHeadingDelimiter = { fg = c.orange , bold = true } ,
2021-05-21 10:19:26 +00:00
markdownCode = { fg = c.teal } ,
markdownCodeBlock = { fg = c.teal } ,
2022-09-12 05:51:08 +00:00
markdownH1 = { fg = c.magenta , bold = true } ,
markdownH2 = { fg = c.blue , bold = true } ,
markdownLinkText = { fg = c.blue , underline = true } ,
2021-04-20 11:39:38 +00:00
2022-12-30 10:51:27 +00:00
[ " helpCommand " ] = { bg = c.terminal_black , fg = c.blue } ,
2022-09-10 17:57:29 +00:00
2021-05-05 10:27:44 +00:00
debugPC = { bg = c.bg_sidebar } , -- used for highlighting the current line in terminal-debug
debugBreakpoint = { bg = util.darken ( c.info , 0.1 ) , fg = c.info } , -- used for breakpoint colors in terminal-debug
2023-10-08 11:38:14 +00:00
dosIniLabel = { link = " @property " } ,
2021-04-20 11:39:38 +00:00
-- These groups are for the native LSP client. Some other LSP clients may
-- use these groups, or use their own. Consult your LSP client's
-- documentation.
LspReferenceText = { bg = c.fg_gutter } , -- used for highlighting "text" references
LspReferenceRead = { bg = c.fg_gutter } , -- used for highlighting "read" references
LspReferenceWrite = { bg = c.fg_gutter } , -- used for highlighting "write" references
2021-10-21 08:11:39 +00:00
DiagnosticError = { fg = c.error } , -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticWarn = { fg = c.warning } , -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticInfo = { fg = c.info } , -- Used as the base highlight group. Other Diagnostic highlights link to this by default
DiagnosticHint = { fg = c.hint } , -- Used as the base highlight group. Other Diagnostic highlights link to this by default
2023-04-18 08:02:34 +00:00
DiagnosticUnnecessary = { fg = c.terminal_black } , -- Used as the base highlight group. Other Diagnostic highlights link to this by default
2021-10-21 08:11:39 +00:00
2021-10-21 08:25:26 +00:00
DiagnosticVirtualTextError = { bg = util.darken ( c.error , 0.1 ) , fg = c.error } , -- Used for "Error" diagnostic virtual text
DiagnosticVirtualTextWarn = { bg = util.darken ( c.warning , 0.1 ) , fg = c.warning } , -- Used for "Warning" diagnostic virtual text
DiagnosticVirtualTextInfo = { bg = util.darken ( c.info , 0.1 ) , fg = c.info } , -- Used for "Information" diagnostic virtual text
DiagnosticVirtualTextHint = { bg = util.darken ( c.hint , 0.1 ) , fg = c.hint } , -- Used for "Hint" diagnostic virtual text
2022-09-12 05:51:08 +00:00
DiagnosticUnderlineError = { undercurl = true , sp = c.error } , -- Used to underline "Error" diagnostics
DiagnosticUnderlineWarn = { undercurl = true , sp = c.warning } , -- Used to underline "Warning" diagnostics
DiagnosticUnderlineInfo = { undercurl = true , sp = c.info } , -- Used to underline "Information" diagnostics
DiagnosticUnderlineHint = { undercurl = true , sp = c.hint } , -- Used to underline "Hint" diagnostics
2021-10-21 08:25:26 +00:00
2022-10-27 18:59:55 +00:00
LspSignatureActiveParameter = { bg = util.darken ( c.bg_visual , 0.4 ) , bold = true } ,
2021-08-05 07:25:57 +00:00
LspCodeLens = { fg = c.comment } ,
2023-06-20 09:51:26 +00:00
LspInlayHint = { bg = util.darken ( c.blue7 , 0.1 ) , fg = c.dark3 } ,
2021-07-08 08:26:49 +00:00
2022-10-05 21:22:49 +00:00
LspInfoBorder = { fg = c.border_highlight , bg = c.bg_float } ,
2021-08-05 07:34:39 +00:00
ALEErrorSign = { fg = c.error } ,
ALEWarningSign = { fg = c.warning } ,
2021-04-20 11:39:38 +00:00
2023-04-16 19:36:36 +00:00
DapStoppedLine = { bg = util.darken ( c.warning , 0.1 ) } , -- Used for "Warning" diagnostic virtual text
2023-03-07 07:51:51 +00:00
-- These groups are for the Neovim tree-sitter highlights.
2021-04-20 11:39:38 +00:00
-- As of writing, tree-sitter support is a WIP, group names may change.
2023-03-07 07:51:51 +00:00
--- Misc
-- TODO:
-- ["@comment.documentation"] = { },
2022-10-17 05:22:44 +00:00
[ " @operator " ] = { fg = c.blue5 } , -- For any operator: `+`, but also `->` and `*` in C.
2023-03-07 07:51:51 +00:00
--- Punctuation
2022-10-17 05:22:44 +00:00
[ " @punctuation.delimiter " ] = { fg = c.blue5 } , -- For delimiters ie: `.`
[ " @punctuation.bracket " ] = { fg = c.fg_dark } , -- For brackets and parens.
[ " @punctuation.special " ] = { fg = c.blue5 } , -- For special punctutation that does not fall in the catagories before.
2023-03-07 07:51:51 +00:00
[ " @punctuation.special.markdown " ] = { fg = c.orange , bold = true } ,
--- Literals
[ " @string.documentation " ] = { fg = c.yellow } ,
2022-10-17 05:22:44 +00:00
[ " @string.regex " ] = { fg = c.blue6 } , -- For regexes.
[ " @string.escape " ] = { fg = c.magenta } , -- For escape characters within a string.
2023-03-07 07:51:51 +00:00
--- Functions
[ " @constructor " ] = { fg = c.magenta } , -- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
[ " @parameter " ] = { fg = c.yellow } , -- For parameters of a function.
2023-09-25 08:42:30 +00:00
[ " @parameter.builtin " ] = { fg = util.lighten ( c.yellow , 0.8 ) } , -- For builtin parameters of a function, e.g. "..." or Smali's p[1-99]
2023-03-07 07:51:51 +00:00
--- Keywords
[ " @keyword " ] = { fg = c.purple , style = options.styles . keywords } , -- For keywords that don't fall in previous categories.
-- TODO:
-- ["@keyword.coroutine"] = { }, -- For keywords related to coroutines.
[ " @keyword.function " ] = { fg = c.magenta , style = options.styles . functions } , -- For keywords used to define a fuction.
[ " @label " ] = { fg = c.blue } , -- For labels: `label:` in C and `:label:` in Lua.
--- Types
2023-04-19 05:17:47 +00:00
[ " @type.builtin " ] = { fg = util.darken ( c.blue1 , 0.8 ) } ,
2023-03-07 07:51:51 +00:00
[ " @field " ] = { fg = c.green1 } , -- For fields.
[ " @property " ] = { fg = c.green1 } ,
--- Identifiers
2023-03-08 11:06:42 +00:00
[ " @variable " ] = { fg = c.fg , style = options.styles . variables } , -- Any variable name that does not have another highlight.
2022-10-17 05:22:44 +00:00
[ " @variable.builtin " ] = { fg = c.red } , -- Variable names that are defined by the languages, like `this` or `self`.
2023-10-03 17:54:00 +00:00
[ " @namespace.builtin " ] = { fg = c.red } , -- Variable names that are defined by the languages, like `this` or `self`.
2021-04-20 11:39:38 +00:00
2023-03-07 07:51:51 +00:00
--- Text
2023-04-17 05:31:50 +00:00
-- ["@text.literal.markdown"] = { fg = c.blue },
2023-03-07 07:51:51 +00:00
[ " @text.literal.markdown_inline " ] = { bg = c.terminal_black , fg = c.blue } ,
2022-10-17 05:22:44 +00:00
[ " @text.reference " ] = { fg = c.teal } ,
2023-03-07 07:51:51 +00:00
[ " @text.todo.unchecked " ] = { fg = c.blue } , -- For brackets and parens.
[ " @text.todo.checked " ] = { fg = c.green1 } , -- For brackets and parens.
[ " @text.warning " ] = { fg = c.bg , bg = c.warning } ,
[ " @text.danger " ] = { fg = c.bg , bg = c.error } ,
2022-11-11 11:32:13 +00:00
[ " @text.diff.add " ] = { link = " DiffAdd " } ,
[ " @text.diff.delete " ] = { link = " DiffDelete " } ,
2021-04-20 11:39:38 +00:00
2023-03-07 07:51:51 +00:00
[ " @namespace " ] = { link = " Include " } ,
2023-05-03 05:52:19 +00:00
-- tsx
[ " @tag.tsx " ] = { fg = c.red } ,
[ " @constructor.tsx " ] = { fg = c.blue1 } ,
[ " @tag.delimiter.tsx " ] = { fg = util.darken ( c.blue , 0.7 ) } ,
2023-03-07 07:51:51 +00:00
-- LSP Semantic Token Groups
2023-05-20 07:06:30 +00:00
[ " @lsp.type.boolean " ] = { link = " @boolean " } ,
[ " @lsp.type.builtinType " ] = { link = " @type.builtin " } ,
2023-04-19 05:17:47 +00:00
[ " @lsp.type.comment " ] = { link = " @comment " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.type.decorator " ] = { link = " @attribute " } ,
[ " @lsp.type.deriveHelper " ] = { link = " @attribute " } ,
2023-03-07 07:51:51 +00:00
[ " @lsp.type.enum " ] = { link = " @type " } ,
2023-04-17 05:34:42 +00:00
[ " @lsp.type.enumMember " ] = { link = " @constant " } ,
2023-05-07 17:30:53 +00:00
[ " @lsp.type.escapeSequence " ] = { link = " @string.escape " } ,
[ " @lsp.type.formatSpecifier " ] = { link = " @punctuation.special " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.type.generic " ] = { link = " @variable " } ,
2023-04-18 08:03:07 +00:00
[ " @lsp.type.interface " ] = { fg = util.lighten ( c.blue1 , 0.7 ) } ,
2023-03-14 11:14:31 +00:00
[ " @lsp.type.keyword " ] = { link = " @keyword " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.type.lifetime " ] = { link = " @storageclass " } ,
2023-03-07 07:51:51 +00:00
[ " @lsp.type.namespace " ] = { link = " @namespace " } ,
2023-05-20 07:06:30 +00:00
[ " @lsp.type.number " ] = { link = " @number " } ,
2023-05-07 17:30:53 +00:00
[ " @lsp.type.operator " ] = { link = " @operator " } ,
2023-03-07 07:51:51 +00:00
[ " @lsp.type.parameter " ] = { link = " @parameter " } ,
[ " @lsp.type.property " ] = { link = " @property " } ,
2023-05-07 17:30:53 +00:00
[ " @lsp.type.selfKeyword " ] = { link = " @variable.builtin " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.type.selfTypeKeyword " ] = { link = " @variable.builtin " } ,
[ " @lsp.type.string " ] = { link = " @string " } ,
2023-05-20 07:06:30 +00:00
[ " @lsp.type.typeAlias " ] = { link = " @type.definition " } ,
[ " @lsp.type.unresolvedReference " ] = { undercurl = true , sp = c.error } ,
2023-03-08 13:12:51 +00:00
[ " @lsp.type.variable " ] = { } , -- use treesitter styles for regular variables
2023-05-20 07:06:30 +00:00
[ " @lsp.typemod.class.defaultLibrary " ] = { link = " @type.builtin " } ,
2023-05-07 17:30:53 +00:00
[ " @lsp.typemod.enum.defaultLibrary " ] = { link = " @type.builtin " } ,
[ " @lsp.typemod.enumMember.defaultLibrary " ] = { link = " @constant.builtin " } ,
2023-03-12 08:17:26 +00:00
[ " @lsp.typemod.function.defaultLibrary " ] = { link = " @function.builtin " } ,
2023-05-07 17:30:53 +00:00
[ " @lsp.typemod.keyword.async " ] = { link = " @keyword.coroutine " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.typemod.keyword.injected " ] = { link = " @keyword " } ,
2023-04-19 07:23:18 +00:00
[ " @lsp.typemod.macro.defaultLibrary " ] = { link = " @function.builtin " } ,
[ " @lsp.typemod.method.defaultLibrary " ] = { link = " @function.builtin " } ,
2023-03-23 06:37:49 +00:00
[ " @lsp.typemod.operator.injected " ] = { link = " @operator " } ,
[ " @lsp.typemod.string.injected " ] = { link = " @string " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.typemod.struct.defaultLibrary " ] = { link = " @type.builtin " } ,
2023-04-19 07:23:18 +00:00
[ " @lsp.typemod.type.defaultLibrary " ] = { fg = util.darken ( c.blue1 , 0.8 ) } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.typemod.typeAlias.defaultLibrary " ] = { fg = util.darken ( c.blue1 , 0.8 ) } ,
[ " @lsp.typemod.variable.callable " ] = { link = " @function " } ,
2023-03-08 13:12:51 +00:00
[ " @lsp.typemod.variable.defaultLibrary " ] = { link = " @variable.builtin " } ,
2023-03-23 06:37:49 +00:00
[ " @lsp.typemod.variable.injected " ] = { link = " @variable " } ,
2023-09-25 08:42:30 +00:00
[ " @lsp.typemod.variable.static " ] = { link = " @constant " } ,
2023-03-07 07:51:51 +00:00
-- NOTE: maybe add these with distinct highlights?
-- ["@lsp.typemod.variable.globalScope"] (global variables)
2021-04-21 08:03:43 +00:00
2023-09-25 08:45:28 +00:00
-- Markdown
[ " @text.title.1.markdown " ] = { fg = c.blue , bold = true } ,
[ " @text.title.2.markdown " ] = { fg = c.yellow , bold = true } ,
2023-09-28 08:54:08 +00:00
[ " @text.title.3.markdown " ] = { fg = c.green , bold = true } ,
[ " @text.title.4.markdown " ] = { fg = c.teal , bold = true } ,
[ " @text.title.5.markdown " ] = { fg = c.magenta , bold = true } ,
[ " @text.title.6.markdown " ] = { fg = c.purple , bold = true } ,
2023-09-25 08:45:28 +00:00
2022-09-02 06:08:07 +00:00
-- ts-rainbow
2022-09-27 19:18:42 +00:00
rainbowcol1 = { fg = c.red } ,
2022-09-02 06:08:07 +00:00
rainbowcol2 = { fg = c.yellow } ,
2022-09-27 19:18:42 +00:00
rainbowcol3 = { fg = c.green } ,
rainbowcol4 = { fg = c.teal } ,
rainbowcol5 = { fg = c.blue } ,
rainbowcol6 = { fg = c.magenta } ,
rainbowcol7 = { fg = c.purple } ,
2022-09-03 13:44:00 +00:00
2023-03-07 07:51:51 +00:00
-- ts-rainbow2 (maintained fork)
TSRainbowRed = { fg = c.red } ,
TSRainbowOrange = { fg = c.orange } ,
TSRainbowYellow = { fg = c.yellow } ,
TSRainbowGreen = { fg = c.green } ,
TSRainbowBlue = { fg = c.blue } ,
TSRainbowViolet = { fg = c.purple } ,
TSRainbowCyan = { fg = c.cyan } ,
2023-07-05 09:45:10 +00:00
-- rainbow-delimiters
RainbowDelimiterRed = { fg = c.red } ,
RainbowDelimiterOrange = { fg = c.orange } ,
RainbowDelimiterYellow = { fg = c.yellow } ,
RainbowDelimiterGreen = { fg = c.green } ,
RainbowDelimiterBlue = { fg = c.blue } ,
RainbowDelimiterViolet = { fg = c.purple } ,
RainbowDelimiterCyan = { fg = c.cyan } ,
2021-04-21 21:48:55 +00:00
-- LspTrouble
2022-09-05 18:32:31 +00:00
TroubleText = { fg = c.fg_dark } ,
TroubleCount = { fg = c.magenta , bg = c.fg_gutter } ,
TroubleNormal = { fg = c.fg_sidebar , bg = c.bg_sidebar } ,
2021-04-21 21:48:55 +00:00
2021-05-01 11:52:43 +00:00
-- Illuminate
illuminatedWord = { bg = c.fg_gutter } ,
illuminatedCurWord = { bg = c.fg_gutter } ,
2022-09-01 10:28:04 +00:00
IlluminatedWordText = { bg = c.fg_gutter } ,
IlluminatedWordRead = { bg = c.fg_gutter } ,
IlluminatedWordWrite = { bg = c.fg_gutter } ,
2021-05-01 11:52:43 +00:00
2021-04-21 06:21:31 +00:00
-- diff
diffAdded = { fg = c.git . add } ,
diffRemoved = { fg = c.git . delete } ,
diffChanged = { fg = c.git . change } ,
diffOldFile = { fg = c.yellow } ,
diffNewFile = { fg = c.orange } ,
diffFile = { fg = c.blue } ,
diffLine = { fg = c.comment } ,
diffIndexLine = { fg = c.magenta } ,
2021-04-21 07:06:52 +00:00
-- Neogit
NeogitBranch = { fg = c.magenta } ,
NeogitRemote = { fg = c.purple } ,
NeogitHunkHeader = { bg = c.bg_highlight , fg = c.fg } ,
NeogitHunkHeaderHighlight = { bg = c.fg_gutter , fg = c.blue } ,
2021-05-12 09:18:48 +00:00
NeogitDiffContextHighlight = { bg = util.darken ( c.fg_gutter , 0.5 ) , fg = c.fg_dark } ,
2021-04-21 07:06:52 +00:00
NeogitDiffDeleteHighlight = { fg = c.git . delete , bg = c.diff . delete } ,
NeogitDiffAddHighlight = { fg = c.git . add , bg = c.diff . add } ,
2022-10-02 16:26:51 +00:00
-- Neotest
NeotestPassed = { fg = c.green } ,
NeotestRunning = { fg = c.yellow } ,
NeotestFailed = { fg = c.red } ,
NeotestSkipped = { fg = c.blue } ,
NeotestTest = { fg = c.fg_sidebar } ,
NeotestNamespace = { fg = c.green2 } ,
NeotestFocused = { fg = c.yellow } ,
NeotestFile = { fg = c.teal } ,
NeotestDir = { fg = c.blue } ,
NeotestBorder = { fg = c.blue } ,
NeotestIndent = { fg = c.fg_sidebar } ,
NeotestExpandMarker = { fg = c.fg_sidebar } ,
NeotestAdapterName = { fg = c.purple , bold = true } ,
NeotestWinSelect = { fg = c.blue } ,
NeotestMarked = { fg = c.blue } ,
NeotestTarget = { fg = c.blue } ,
--[[ NeotestUnknown = {}, ]]
2021-04-20 11:39:38 +00:00
-- GitGutter
2021-04-25 09:42:59 +00:00
GitGutterAdd = { fg = c.gitSigns . add } , -- diff mode: Added line |diff.txt|
GitGutterChange = { fg = c.gitSigns . change } , -- diff mode: Changed line |diff.txt|
GitGutterDelete = { fg = c.gitSigns . delete } , -- diff mode: Deleted line |diff.txt|
2023-04-28 08:37:27 +00:00
GitGutterAddLineNr = { fg = c.gitSigns . add } ,
GitGutterChangeLineNr = { fg = c.gitSigns . change } ,
GitGutterDeleteLineNr = { fg = c.gitSigns . delete } ,
2021-04-20 11:39:38 +00:00
-- GitSigns
2021-04-25 09:42:59 +00:00
GitSignsAdd = { fg = c.gitSigns . add } , -- diff mode: Added line |diff.txt|
GitSignsChange = { fg = c.gitSigns . change } , -- diff mode: Changed line |diff.txt|
GitSignsDelete = { fg = c.gitSigns . delete } , -- diff mode: Deleted line |diff.txt|
2021-04-20 11:39:38 +00:00
-- Telescope
2022-09-05 18:32:31 +00:00
TelescopeBorder = { fg = c.border_highlight , bg = c.bg_float } ,
TelescopeNormal = { fg = c.fg , bg = c.bg_float } ,
2021-04-20 11:39:38 +00:00
-- NvimTree
NvimTreeNormal = { fg = c.fg_sidebar , bg = c.bg_sidebar } ,
2022-09-26 14:32:00 +00:00
NvimTreeWinSeparator = {
fg = options.styles . sidebars == " transparent " and c.border or c.bg_sidebar ,
bg = c.bg_sidebar ,
} ,
2021-10-21 10:27:46 +00:00
NvimTreeNormalNC = { fg = c.fg_sidebar , bg = c.bg_sidebar } ,
2022-09-12 05:51:08 +00:00
NvimTreeRootFolder = { fg = c.blue , bold = true } ,
2021-04-20 11:39:38 +00:00
NvimTreeGitDirty = { fg = c.git . change } ,
NvimTreeGitNew = { fg = c.git . add } ,
2021-05-02 08:13:28 +00:00
NvimTreeGitDeleted = { fg = c.git . delete } ,
2022-09-03 13:44:00 +00:00
NvimTreeOpenedFile = { bg = c.bg_highlight } ,
2022-09-12 05:51:08 +00:00
NvimTreeSpecialFile = { fg = c.purple , underline = true } ,
2021-05-07 09:43:49 +00:00
NvimTreeIndentMarker = { fg = c.fg_gutter } ,
2021-05-11 11:21:48 +00:00
NvimTreeImageFile = { fg = c.fg_sidebar } ,
NvimTreeSymlink = { fg = c.blue } ,
2022-11-10 19:07:55 +00:00
NvimTreeFolderIcon = { bg = c.none , fg = c.blue } ,
2021-04-20 11:39:38 +00:00
-- NvimTreeFolderName= { fg = c.fg_float },
2022-09-10 19:16:35 +00:00
NeoTreeNormal = { fg = c.fg_sidebar , bg = c.bg_sidebar } ,
NeoTreeNormalNC = { fg = c.fg_sidebar , bg = c.bg_sidebar } ,
2023-03-03 19:12:08 +00:00
NeoTreeDimText = { fg = c.fg_gutter } ,
2022-09-10 19:17:21 +00:00
2021-06-25 15:09:43 +00:00
-- Fern
FernBranchText = { fg = c.blue } ,
2021-06-24 07:20:09 +00:00
2021-06-25 15:09:43 +00:00
-- glyph palette
GlyphPalette1 = { fg = c.red1 } ,
GlyphPalette2 = { fg = c.green } ,
GlyphPalette3 = { fg = c.yellow } ,
GlyphPalette4 = { fg = c.blue } ,
GlyphPalette6 = { fg = c.green1 } ,
GlyphPalette7 = { fg = c.fg } ,
GlyphPalette9 = { fg = c.red } ,
2021-06-24 07:20:09 +00:00
2021-04-20 11:39:38 +00:00
-- Dashboard
DashboardShortCut = { fg = c.cyan } ,
DashboardHeader = { fg = c.blue } ,
DashboardCenter = { fg = c.magenta } ,
2023-10-04 09:56:16 +00:00
DashboardFooter = { fg = c.blue1 } ,
DashboardKey = { fg = c.orange } ,
DashboardDesc = { fg = c.cyan } ,
DashboardIcon = { fg = c.cyan , bold = true } ,
2021-04-20 11:39:38 +00:00
2022-09-30 08:10:01 +00:00
-- Alpha
2022-12-30 22:28:10 +00:00
AlphaShortcut = { fg = c.orange } ,
2022-09-30 08:10:01 +00:00
AlphaHeader = { fg = c.blue } ,
AlphaHeaderLabel = { fg = c.orange } ,
2023-03-19 07:00:34 +00:00
AlphaFooter = { fg = c.blue1 } ,
2022-12-30 22:28:10 +00:00
AlphaButtons = { fg = c.cyan } ,
2022-09-30 08:10:01 +00:00
2021-04-20 11:39:38 +00:00
-- WhichKey
WhichKey = { fg = c.cyan } ,
WhichKeyGroup = { fg = c.blue } ,
WhichKeyDesc = { fg = c.magenta } ,
WhichKeySeperator = { fg = c.comment } ,
2021-04-28 12:59:44 +00:00
WhichKeySeparator = { fg = c.comment } ,
2021-05-04 06:27:18 +00:00
WhichKeyFloat = { bg = c.bg_sidebar } ,
2021-05-01 11:52:43 +00:00
WhichKeyValue = { fg = c.dark5 } ,
2021-04-20 11:39:38 +00:00
-- LspSaga
2021-10-21 08:25:26 +00:00
DiagnosticWarning = { link = " DiagnosticWarn " } ,
DiagnosticInformation = { link = " DiagnosticInfo " } ,
2021-06-25 15:09:43 +00:00
2021-07-20 07:40:31 +00:00
LspFloatWinNormal = { bg = c.bg_float } ,
2021-06-25 15:09:43 +00:00
LspFloatWinBorder = { fg = c.border_highlight } ,
LspSagaBorderTitle = { fg = c.cyan } ,
LspSagaHoverBorder = { fg = c.blue } ,
LspSagaRenameBorder = { fg = c.green } ,
LspSagaDefPreviewBorder = { fg = c.green } ,
LspSagaCodeActionBorder = { fg = c.blue } ,
LspSagaFinderSelection = { fg = c.bg_visual } ,
LspSagaCodeActionTitle = { fg = c.blue1 } ,
LspSagaCodeActionContent = { fg = c.purple } ,
LspSagaSignatureHelpBorder = { fg = c.red } ,
ReferencesCount = { fg = c.purple } ,
DefinitionCount = { fg = c.purple } ,
DefinitionIcon = { fg = c.blue } ,
ReferencesIcon = { fg = c.blue } ,
TargetWord = { fg = c.cyan } ,
2021-04-20 11:39:38 +00:00
-- NeoVim
healthError = { fg = c.error } ,
healthSuccess = { fg = c.green1 } ,
healthWarning = { fg = c.warning } ,
-- BufferLine
BufferLineIndicatorSelected = { fg = c.git . change } ,
2021-07-20 07:41:49 +00:00
-- Barbar
2023-04-16 06:11:27 +00:00
BufferCurrent = { bg = c.bg , fg = c.fg } ,
BufferCurrentERROR = { bg = c.bg , fg = c.error } ,
BufferCurrentHINT = { bg = c.bg , fg = c.hint } ,
-- BufferCurrentIcon = { bg = c.bg, fg = c.},
BufferCurrentINFO = { bg = c.bg , fg = c.info } ,
BufferCurrentWARN = { bg = c.bg , fg = c.warning } ,
BufferCurrentIndex = { bg = c.bg , fg = c.info } ,
BufferCurrentMod = { bg = c.bg , fg = c.warning } ,
2023-04-16 21:20:29 +00:00
BufferCurrentSign = { bg = c.bg , fg = c.bg } ,
2023-04-16 06:11:27 +00:00
BufferCurrentTarget = { bg = c.bg , fg = c.red } ,
2023-01-04 07:00:39 +00:00
BufferAlternate = { bg = c.fg_gutter , fg = c.fg } ,
BufferAlternateERROR = { bg = c.fg_gutter , fg = c.error } ,
BufferAlternateHINT = { bg = c.fg_gutter , fg = c.hint } ,
-- BufferAlternateIcon = { bg = c.fg_gutter, fg = c. },
BufferAlternateIndex = { bg = c.fg_gutter , fg = c.info } ,
BufferAlternateINFO = { bg = c.fg_gutter , fg = c.info } ,
BufferAlternateMod = { bg = c.fg_gutter , fg = c.warning } ,
BufferAlternateSign = { bg = c.fg_gutter , fg = c.info } ,
BufferAlternateTarget = { bg = c.fg_gutter , fg = c.red } ,
BufferAlternateWARN = { bg = c.fg_gutter , fg = c.warning } ,
2021-07-20 07:41:49 +00:00
BufferVisible = { bg = c.bg_statusline , fg = c.fg } ,
2023-01-04 07:00:39 +00:00
BufferVisibleERROR = { bg = c.bg_statusline , fg = c.error } ,
BufferVisibleHINT = { bg = c.bg_statusline , fg = c.hint } ,
-- BufferVisibleIcon = { bg = c.bg_statusline, fg = c. },
BufferVisibleINFO = { bg = c.bg_statusline , fg = c.info } ,
BufferVisibleWARN = { bg = c.bg_statusline , fg = c.warning } ,
2021-07-20 07:41:49 +00:00
BufferVisibleIndex = { bg = c.bg_statusline , fg = c.info } ,
BufferVisibleMod = { bg = c.bg_statusline , fg = c.warning } ,
BufferVisibleSign = { bg = c.bg_statusline , fg = c.info } ,
BufferVisibleTarget = { bg = c.bg_statusline , fg = c.red } ,
2023-04-19 10:07:18 +00:00
BufferInactive = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.dark5 , 0.8 ) } ,
2023-05-23 06:51:53 +00:00
BufferInactiveERROR = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.error , 0.8 ) } ,
BufferInactiveHINT = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.hint , 0.8 ) } ,
2023-04-16 06:11:27 +00:00
-- BufferInactiveIcon = { bg = c.bg_statusline, fg = util.darken(c., 0.1) },
2023-05-23 06:51:53 +00:00
BufferInactiveINFO = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.info , 0.8 ) } ,
BufferInactiveWARN = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.warning , 0.8 ) } ,
BufferInactiveIndex = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = c.dark5 } ,
BufferInactiveMod = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = util.darken ( c.warning , 0.8 ) } ,
2023-04-19 10:07:18 +00:00
BufferInactiveSign = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = c.bg } ,
2023-05-23 06:51:53 +00:00
BufferInactiveTarget = { bg = util.darken ( c.bg_highlight , 0.4 ) , fg = c.red } ,
2023-01-04 07:00:39 +00:00
BufferOffset = { bg = c.bg_statusline , fg = c.dark5 } ,
2023-04-19 10:07:18 +00:00
BufferTabpageFill = { bg = util.darken ( c.bg_highlight , 0.8 ) , fg = c.dark5 } ,
2021-07-20 07:41:49 +00:00
BufferTabpages = { bg = c.bg_statusline , fg = c.none } ,
2021-04-21 21:48:06 +00:00
-- Sneak
Sneak = { fg = c.bg_highlight , bg = c.magenta } ,
2021-04-21 21:56:40 +00:00
SneakScope = { bg = c.bg_visual } ,
2021-04-21 22:09:25 +00:00
-- Hop
2022-09-12 05:51:08 +00:00
HopNextKey = { fg = c.magenta2 , bold = true } ,
HopNextKey1 = { fg = c.blue2 , bold = true } ,
2022-10-04 14:43:08 +00:00
HopNextKey2 = { fg = util.darken ( c.blue2 , 0.6 ) } ,
2021-04-21 22:09:25 +00:00
HopUnmatched = { fg = c.dark3 } ,
2021-07-09 21:35:04 +00:00
2022-09-28 21:08:24 +00:00
TSNodeKey = { fg = c.magenta2 , bold = true } ,
TSNodeUnmatched = { fg = c.dark3 } ,
2022-09-12 05:51:08 +00:00
LeapMatch = { bg = c.magenta2 , fg = c.fg , bold = true } ,
LeapLabelPrimary = { fg = c.magenta2 , bold = true } ,
LeapLabelSecondary = { fg = c.green1 , bold = true } ,
2022-09-05 21:47:57 +00:00
LeapBackdrop = { fg = c.dark3 } ,
2023-06-19 21:08:03 +00:00
FlashBackdrop = { fg = c.dark3 } ,
FlashLabel = { bg = c.magenta2 , bold = true , fg = c.fg } ,
2021-07-09 21:35:04 +00:00
LightspeedGreyWash = { fg = c.dark3 } ,
2021-12-17 22:30:40 +00:00
-- LightspeedCursor = { link = "Cursor" },
2022-09-12 05:51:08 +00:00
LightspeedLabel = { fg = c.magenta2 , bold = true , underline = true } ,
LightspeedLabelDistant = { fg = c.green1 , bold = true , underline = true } ,
LightspeedLabelDistantOverlapped = { fg = c.green2 , underline = true } ,
LightspeedLabelOverlapped = { fg = c.magenta2 , underline = true } ,
2021-12-17 22:30:40 +00:00
LightspeedMaskedChar = { fg = c.orange } ,
2022-09-12 05:51:08 +00:00
LightspeedOneCharMatch = { bg = c.magenta2 , fg = c.fg , bold = true } ,
2021-12-17 22:30:40 +00:00
LightspeedPendingOpArea = { bg = c.magenta2 , fg = c.fg } ,
2022-09-12 05:51:08 +00:00
LightspeedShortcut = { bg = c.magenta2 , fg = c.fg , bold = true , underline = true } ,
2021-12-17 22:30:40 +00:00
-- LightspeedShortcutOverlapped = { link = "LightspeedShortcut" },
-- LightspeedUniqueChar = { link = "LightspeedUnlabeledMatch" },
2022-09-12 05:51:08 +00:00
LightspeedUnlabeledMatch = { fg = c.blue2 , bold = true } ,
2021-10-21 08:11:39 +00:00
-- Cmp
CmpDocumentation = { fg = c.fg , bg = c.bg_float } ,
CmpDocumentationBorder = { fg = c.border_highlight , bg = c.bg_float } ,
2023-05-27 08:43:41 +00:00
CmpGhostText = { fg = c.terminal_black } ,
2021-11-30 08:06:50 +00:00
2021-10-21 08:11:39 +00:00
CmpItemAbbr = { fg = c.fg , bg = c.none } ,
2022-09-12 05:51:08 +00:00
CmpItemAbbrDeprecated = { fg = c.fg_gutter , bg = c.none , strikethrough = true } ,
2021-11-30 08:06:50 +00:00
CmpItemAbbrMatch = { fg = c.blue1 , bg = c.none } ,
CmpItemAbbrMatchFuzzy = { fg = c.blue1 , bg = c.none } ,
2021-10-21 08:11:39 +00:00
CmpItemMenu = { fg = c.comment , bg = c.none } ,
2021-12-17 22:30:40 +00:00
2022-10-23 20:58:29 +00:00
CmpItemKindDefault = { fg = c.fg_dark , bg = c.none } ,
2021-12-04 13:14:58 +00:00
CmpItemKindKeyword = { fg = c.cyan , bg = c.none } ,
2021-11-30 08:06:50 +00:00
CmpItemKindVariable = { fg = c.magenta , bg = c.none } ,
2021-12-04 13:14:58 +00:00
CmpItemKindConstant = { fg = c.magenta , bg = c.none } ,
CmpItemKindReference = { fg = c.magenta , bg = c.none } ,
CmpItemKindValue = { fg = c.magenta , bg = c.none } ,
2023-03-01 21:54:24 +00:00
CmpItemKindCopilot = { fg = c.teal , bg = c.none } ,
2023-10-08 22:12:05 +00:00
CmpItemKindCodeium = { fg = c.teal , bg = c.none } ,
2023-10-14 16:27:03 +00:00
CmpItemKindTabNine = { fg = c.teal , bg = c.none } ,
2021-11-30 08:06:50 +00:00
CmpItemKindFunction = { fg = c.blue , bg = c.none } ,
CmpItemKindMethod = { fg = c.blue , bg = c.none } ,
2021-12-04 13:14:58 +00:00
CmpItemKindConstructor = { fg = c.blue , bg = c.none } ,
2021-11-30 08:06:50 +00:00
CmpItemKindClass = { fg = c.orange , bg = c.none } ,
CmpItemKindInterface = { fg = c.orange , bg = c.none } ,
2021-12-04 13:14:58 +00:00
CmpItemKindStruct = { fg = c.orange , bg = c.none } ,
CmpItemKindEvent = { fg = c.orange , bg = c.none } ,
CmpItemKindEnum = { fg = c.orange , bg = c.none } ,
CmpItemKindUnit = { fg = c.orange , bg = c.none } ,
2021-12-17 22:30:40 +00:00
2021-12-04 13:14:58 +00:00
CmpItemKindModule = { fg = c.yellow , bg = c.none } ,
2023-10-12 09:50:27 +00:00
CmpItemKindPackage = { fg = c.yellow , bg = c.none } ,
2021-11-30 08:06:50 +00:00
CmpItemKindProperty = { fg = c.green1 , bg = c.none } ,
CmpItemKindField = { fg = c.green1 , bg = c.none } ,
2021-12-04 13:14:58 +00:00
CmpItemKindTypeParameter = { fg = c.green1 , bg = c.none } ,
CmpItemKindEnumMember = { fg = c.green1 , bg = c.none } ,
CmpItemKindOperator = { fg = c.green1 , bg = c.none } ,
2021-11-30 08:06:50 +00:00
CmpItemKindSnippet = { fg = c.dark5 , bg = c.none } ,
2022-09-02 05:54:15 +00:00
2022-09-20 05:43:26 +00:00
-- navic
NavicIconsFile = { fg = c.fg , bg = c.none } ,
NavicIconsModule = { fg = c.yellow , bg = c.none } ,
NavicIconsNamespace = { fg = c.fg , bg = c.none } ,
NavicIconsPackage = { fg = c.fg , bg = c.none } ,
NavicIconsClass = { fg = c.orange , bg = c.none } ,
NavicIconsMethod = { fg = c.blue , bg = c.none } ,
NavicIconsProperty = { fg = c.green1 , bg = c.none } ,
NavicIconsField = { fg = c.green1 , bg = c.none } ,
NavicIconsConstructor = { fg = c.orange , bg = c.none } ,
NavicIconsEnum = { fg = c.orange , bg = c.none } ,
NavicIconsInterface = { fg = c.orange , bg = c.none } ,
NavicIconsFunction = { fg = c.blue , bg = c.none } ,
NavicIconsVariable = { fg = c.magenta , bg = c.none } ,
NavicIconsConstant = { fg = c.magenta , bg = c.none } ,
NavicIconsString = { fg = c.green , bg = c.none } ,
NavicIconsNumber = { fg = c.orange , bg = c.none } ,
NavicIconsBoolean = { fg = c.orange , bg = c.none } ,
NavicIconsArray = { fg = c.orange , bg = c.none } ,
NavicIconsObject = { fg = c.orange , bg = c.none } ,
NavicIconsKey = { fg = c.purple , bg = c.none } ,
NavicIconsKeyword = { fg = c.purple , bg = c.none } ,
NavicIconsNull = { fg = c.orange , bg = c.none } ,
NavicIconsEnumMember = { fg = c.green1 , bg = c.none } ,
NavicIconsStruct = { fg = c.orange , bg = c.none } ,
NavicIconsEvent = { fg = c.orange , bg = c.none } ,
NavicIconsOperator = { fg = c.fg , bg = c.none } ,
NavicIconsTypeParameter = { fg = c.green1 , bg = c.none } ,
NavicText = { fg = c.fg , bg = c.none } ,
NavicSeparator = { fg = c.fg , bg = c.none } ,
2023-10-10 22:16:59 +00:00
AerialFileIcon = { fg = c.fg , bg = c.none } ,
AerialModuleIcon = { fg = c.yellow , bg = c.none } ,
2023-10-12 09:50:27 +00:00
AerialNamespaceIcon = { fg = c.cyan , bg = c.none } ,
AerialPackageIcon = { fg = c.cyan , bg = c.none } ,
2023-10-10 22:16:59 +00:00
AerialClassIcon = { fg = c.orange , bg = c.none } ,
AerialMethodIcon = { fg = c.blue , bg = c.none } ,
AerialPropertyIcon = { fg = c.green1 , bg = c.none } ,
AerialFieldIcon = { fg = c.green1 , bg = c.none } ,
AerialConstructorIcon = { fg = c.orange , bg = c.none } ,
AerialEnumIcon = { fg = c.orange , bg = c.none } ,
AerialInterfaceIcon = { fg = c.orange , bg = c.none } ,
AerialFunctionIcon = { fg = c.blue , bg = c.none } ,
AerialVariableIcon = { fg = c.magenta , bg = c.none } ,
AerialConstantIcon = { fg = c.magenta , bg = c.none } ,
AerialStringIcon = { fg = c.green , bg = c.none } ,
AerialNumberIcon = { fg = c.orange , bg = c.none } ,
AerialBooleanIcon = { fg = c.orange , bg = c.none } ,
AerialArrayIcon = { fg = c.orange , bg = c.none } ,
AerialObjectIcon = { fg = c.orange , bg = c.none } ,
AerialKeyIcon = { fg = c.purple , bg = c.none } ,
AerialKeywordIcon = { fg = c.purple , bg = c.none } ,
AerialNullIcon = { fg = c.orange , bg = c.none } ,
AerialEnumMemberIcon = { fg = c.green1 , bg = c.none } ,
AerialStructIcon = { fg = c.orange , bg = c.none } ,
AerialEventIcon = { fg = c.orange , bg = c.none } ,
2023-10-12 09:50:27 +00:00
AerialOperatorIcon = { fg = c.blue5 , bg = c.none } ,
2023-10-10 22:16:59 +00:00
AerialTypeParameterIcon = { fg = c.green1 , bg = c.none } ,
2023-10-12 09:50:27 +00:00
AerialNormal = { fg = c.fg , bg = c.none } ,
2023-10-10 22:16:59 +00:00
AerialGuide = { fg = c.fg_gutter } ,
AerialLine = { link = " LspInlayHint " } ,
2022-10-13 05:25:29 +00:00
IndentBlanklineChar = { fg = c.fg_gutter , nocombine = true } ,
IndentBlanklineContextChar = { fg = c.purple , nocombine = true } ,
2023-09-28 08:54:08 +00:00
IblIndent = { fg = c.fg_gutter , nocombine = true } ,
IblScope = { fg = c.purple , nocombine = true } ,
2022-09-05 20:43:35 +00:00
2022-09-02 06:12:22 +00:00
-- Scrollbar
2022-09-03 13:44:00 +00:00
ScrollbarHandle = { fg = c.none , bg = c.bg_highlight } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarSearchHandle = { fg = c.orange , bg = c.bg_highlight } ,
ScrollbarSearch = { fg = c.orange , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarErrorHandle = { fg = c.error , bg = c.bg_highlight } ,
ScrollbarError = { fg = c.error , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarWarnHandle = { fg = c.warning , bg = c.bg_highlight } ,
ScrollbarWarn = { fg = c.warning , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarInfoHandle = { fg = c.info , bg = c.bg_highlight } ,
ScrollbarInfo = { fg = c.info , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarHintHandle = { fg = c.hint , bg = c.bg_highlight } ,
ScrollbarHint = { fg = c.hint , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-09-03 13:44:00 +00:00
ScrollbarMiscHandle = { fg = c.purple , bg = c.bg_highlight } ,
ScrollbarMisc = { fg = c.purple , bg = c.none } ,
2022-09-02 06:12:22 +00:00
2022-10-04 14:43:47 +00:00
-- Yanky
YankyPut = { link = " IncSearch " } ,
YankyYanked = { link = " IncSearch " } ,
2022-12-26 08:36:39 +00:00
-- Lazy
LazyProgressDone = { bold = true , fg = c.magenta2 } ,
2023-01-14 14:53:29 +00:00
LazyProgressTodo = { bold = true , fg = c.fg_gutter } ,
2022-12-26 08:36:39 +00:00
2022-10-05 21:22:30 +00:00
-- Notify
2023-07-13 22:00:53 +00:00
NotifyBackground = { fg = c.fg , bg = c.bg } ,
2022-10-05 21:22:30 +00:00
--- Border
2022-10-10 18:16:57 +00:00
NotifyERRORBorder = { fg = util.darken ( c.error , 0.3 ) , bg = options.transparent and c.none or c.bg } ,
2022-10-12 06:10:23 +00:00
NotifyWARNBorder = { fg = util.darken ( c.warning , 0.3 ) , bg = options.transparent and c.none or c.bg } ,
NotifyINFOBorder = { fg = util.darken ( c.info , 0.3 ) , bg = options.transparent and c.none or c.bg } ,
2022-10-10 18:16:57 +00:00
NotifyDEBUGBorder = { fg = util.darken ( c.comment , 0.3 ) , bg = options.transparent and c.none or c.bg } ,
NotifyTRACEBorder = { fg = util.darken ( c.purple , 0.3 ) , bg = options.transparent and c.none or c.bg } ,
2022-10-05 21:22:30 +00:00
--- Icons
2022-10-12 06:10:23 +00:00
NotifyERRORIcon = { fg = c.error } ,
NotifyWARNIcon = { fg = c.warning } ,
NotifyINFOIcon = { fg = c.info } ,
NotifyDEBUGIcon = { fg = c.comment } ,
NotifyTRACEIcon = { fg = c.purple } ,
2022-10-05 21:22:30 +00:00
--- Title
2022-10-12 06:10:23 +00:00
NotifyERRORTitle = { fg = c.error } ,
NotifyWARNTitle = { fg = c.warning } ,
NotifyINFOTitle = { fg = c.info } ,
NotifyDEBUGTitle = { fg = c.comment } ,
NotifyTRACETitle = { fg = c.purple } ,
2022-10-05 21:22:30 +00:00
--- Body
2022-10-12 06:10:23 +00:00
NotifyERRORBody = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
NotifyWARNBody = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
NotifyINFOBody = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
NotifyDEBUGBody = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
NotifyTRACEBody = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
2022-10-05 21:22:30 +00:00
2022-09-02 05:54:15 +00:00
-- Mini
2022-09-12 05:51:08 +00:00
MiniCompletionActiveParameter = { underline = true } ,
2022-09-02 05:54:15 +00:00
MiniCursorword = { bg = c.fg_gutter } ,
MiniCursorwordCurrent = { bg = c.fg_gutter } ,
2023-06-17 06:24:52 +00:00
MiniIndentscopeSymbol = { fg = c.blue1 , nocombine = true } ,
2022-09-12 05:51:08 +00:00
MiniIndentscopePrefix = { nocombine = true } , -- Make it invisible
2022-09-02 05:54:15 +00:00
2022-09-30 08:08:07 +00:00
MiniJump = { bg = c.magenta2 , fg = " #ffffff " } ,
2022-09-02 05:54:15 +00:00
2022-09-12 05:51:08 +00:00
MiniJump2dSpot = { fg = c.magenta2 , bold = true , nocombine = true } ,
2022-09-02 05:54:15 +00:00
2022-09-12 05:51:08 +00:00
MiniStarterCurrent = { nocombine = true } ,
MiniStarterFooter = { fg = c.yellow , italic = true } ,
2022-09-02 05:54:15 +00:00
MiniStarterHeader = { fg = c.blue } ,
2022-09-10 07:35:41 +00:00
MiniStarterInactive = { fg = c.comment , style = options.styles . comments } ,
MiniStarterItem = { fg = c.fg , bg = options.transparent and c.none or c.bg } ,
2022-09-02 05:54:15 +00:00
MiniStarterItemBullet = { fg = c.border_highlight } ,
MiniStarterItemPrefix = { fg = c.warning } ,
2022-09-03 13:44:00 +00:00
MiniStarterSection = { fg = c.blue1 } ,
2022-09-02 05:54:15 +00:00
MiniStarterQuery = { fg = c.info } ,
MiniStatuslineDevinfo = { fg = c.fg_dark , bg = c.bg_highlight } ,
MiniStatuslineFileinfo = { fg = c.fg_dark , bg = c.bg_highlight } ,
MiniStatuslineFilename = { fg = c.fg_dark , bg = c.fg_gutter } ,
MiniStatuslineInactive = { fg = c.blue , bg = c.bg_statusline } ,
2022-09-12 05:51:08 +00:00
MiniStatuslineModeCommand = { fg = c.black , bg = c.yellow , bold = true } ,
MiniStatuslineModeInsert = { fg = c.black , bg = c.green , bold = true } ,
MiniStatuslineModeNormal = { fg = c.black , bg = c.blue , bold = true } ,
MiniStatuslineModeOther = { fg = c.black , bg = c.teal , bold = true } ,
MiniStatuslineModeReplace = { fg = c.black , bg = c.red , bold = true } ,
MiniStatuslineModeVisual = { fg = c.black , bg = c.magenta , bold = true } ,
2022-09-02 05:54:15 +00:00
MiniSurround = { bg = c.orange , fg = c.black } ,
MiniTablineCurrent = { fg = c.fg , bg = c.fg_gutter } ,
MiniTablineFill = { bg = c.black } ,
MiniTablineHidden = { fg = c.dark5 , bg = c.bg_statusline } ,
MiniTablineModifiedCurrent = { fg = c.warning , bg = c.fg_gutter } ,
MiniTablineModifiedHidden = { bg = c.bg_statusline , fg = util.darken ( c.warning , 0.7 ) } ,
MiniTablineModifiedVisible = { fg = c.warning , bg = c.bg_statusline } ,
MiniTablineTabpagesection = { bg = c.bg_statusline , fg = c.none } ,
MiniTablineVisible = { fg = c.fg , bg = c.bg_statusline } ,
2022-09-12 05:51:08 +00:00
MiniTestEmphasis = { bold = true } ,
MiniTestFail = { fg = c.red , bold = true } ,
MiniTestPass = { fg = c.green , bold = true } ,
2022-09-02 05:54:15 +00:00
MiniTrailspace = { bg = c.red } ,
2022-10-23 20:58:29 +00:00
-- Noice
NoiceCompletionItemKindDefault = { fg = c.fg_dark , bg = c.none } ,
NoiceCompletionItemKindKeyword = { fg = c.cyan , bg = c.none } ,
NoiceCompletionItemKindVariable = { fg = c.magenta , bg = c.none } ,
NoiceCompletionItemKindConstant = { fg = c.magenta , bg = c.none } ,
NoiceCompletionItemKindReference = { fg = c.magenta , bg = c.none } ,
NoiceCompletionItemKindValue = { fg = c.magenta , bg = c.none } ,
NoiceCompletionItemKindFunction = { fg = c.blue , bg = c.none } ,
NoiceCompletionItemKindMethod = { fg = c.blue , bg = c.none } ,
NoiceCompletionItemKindConstructor = { fg = c.blue , bg = c.none } ,
NoiceCompletionItemKindClass = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindInterface = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindStruct = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindEvent = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindEnum = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindUnit = { fg = c.orange , bg = c.none } ,
NoiceCompletionItemKindModule = { fg = c.yellow , bg = c.none } ,
NoiceCompletionItemKindProperty = { fg = c.green1 , bg = c.none } ,
NoiceCompletionItemKindField = { fg = c.green1 , bg = c.none } ,
NoiceCompletionItemKindTypeParameter = { fg = c.green1 , bg = c.none } ,
NoiceCompletionItemKindEnumMember = { fg = c.green1 , bg = c.none } ,
NoiceCompletionItemKindOperator = { fg = c.green1 , bg = c.none } ,
NoiceCompletionItemKindSnippet = { fg = c.dark5 , bg = c.none } ,
2022-11-15 16:16:12 +00:00
TreesitterContext = { bg = util.darken ( c.fg_gutter , 0.8 ) } ,
Hlargs = { fg = c.yellow } ,
-- TreesitterContext = { bg = util.darken(c.bg_visual, 0.4) },
2021-04-20 11:39:38 +00:00
}
2021-04-19 12:39:35 +00:00
2022-09-05 18:32:31 +00:00
if not vim.diagnostic then
local severity_map = {
Error = " Error " ,
Warn = " Warning " ,
Info = " Information " ,
Hint = " Hint " ,
}
local types = { " Default " , " VirtualText " , " Underline " }
for _ , type in ipairs ( types ) do
for snew , sold in pairs ( severity_map ) do
theme.highlights [ " LspDiagnostics " .. type .. sold ] = {
link = " Diagnostic " .. ( type == " Default " and " " or type ) .. snew ,
}
end
end
end
2023-03-07 07:51:51 +00:00
---@type table<string, table>
2021-08-05 11:51:06 +00:00
theme.defer = { }
2022-09-10 07:35:41 +00:00
if options.hide_inactive_statusline then
2022-09-12 05:51:08 +00:00
local inactive = { underline = true , bg = c.none , fg = c.bg , sp = c.border }
2021-04-19 12:39:35 +00:00
2021-04-20 11:39:38 +00:00
-- StatusLineNC
2022-09-05 18:32:31 +00:00
theme.highlights . StatusLineNC = inactive
2021-04-20 11:39:38 +00:00
-- LuaLine
for _ , section in ipairs ( { " a " , " b " , " c " } ) do
2021-08-05 11:51:06 +00:00
theme.defer [ " lualine_ " .. section .. " _inactive " ] = inactive
2021-04-20 11:39:38 +00:00
end
2022-09-02 05:54:15 +00:00
-- mini.statusline
2022-09-05 18:32:31 +00:00
theme.highlights . MiniStatuslineInactive = inactive
2021-04-19 12:39:35 +00:00
end
2022-09-10 07:35:41 +00:00
options.on_highlights ( theme.highlights , theme.colors )
2022-09-05 18:32:31 +00:00
2022-09-10 07:35:41 +00:00
if config.is_day ( ) then
2022-09-05 12:06:03 +00:00
util.invert_colors ( theme.colors )
2022-09-05 18:32:31 +00:00
util.invert_highlights ( theme.highlights )
2022-09-05 12:06:03 +00:00
end
2021-04-20 11:39:38 +00:00
return theme
end
2021-04-17 19:22:55 +00:00
2021-04-20 11:39:38 +00:00
return M