2336 lines
39 KiB
Lua
2336 lines
39 KiB
Lua
|
local colors = {
|
||
|
_name = "faroutnight",
|
||
|
bg = "#1a1b26",
|
||
|
bg_dark = "#16161e",
|
||
|
bg_float = "#16161e",
|
||
|
bg_highlight = "#241816",
|
||
|
bg_popup = "#16161e",
|
||
|
bg_search = "#f49d69",
|
||
|
bg_sidebar = "#16161e",
|
||
|
bg_statusline = "#16161e",
|
||
|
bg_visual = "#714f41",
|
||
|
black = "#15161e",
|
||
|
blue = "#d47d49",
|
||
|
blue0 = "#f49d69",
|
||
|
blue1 = "#BF472C",
|
||
|
blue2 = "#A4895C",
|
||
|
blue5 = "#a67458",
|
||
|
blue6 = "#BC907B",
|
||
|
blue7 = "#703F29",
|
||
|
border = "#15161e",
|
||
|
border_highlight = "#9e3e2b",
|
||
|
comment = "#6B4035",
|
||
|
cyan = "#a67458",
|
||
|
dark3 = "#66292F",
|
||
|
dark5 = "#A67458",
|
||
|
delta = {
|
||
|
add = "#6b5f5a",
|
||
|
delete = "#733d37"
|
||
|
},
|
||
|
diff = {
|
||
|
add = "#353237",
|
||
|
change = "#272026",
|
||
|
delete = "#38262c",
|
||
|
text = "#703F29"
|
||
|
},
|
||
|
error = "#df674c",
|
||
|
fg = "#E0CCAE",
|
||
|
fg_dark = "#F2A766",
|
||
|
fg_float = "#E0CCAE",
|
||
|
fg_gutter = "#6B4035",
|
||
|
fg_sidebar = "#F2A766",
|
||
|
git = {
|
||
|
add = "#A4895C",
|
||
|
change = "#66292F",
|
||
|
delete = "#BF472C",
|
||
|
ignore = "#66292F"
|
||
|
},
|
||
|
gitSigns = {
|
||
|
add = "#CAAF82",
|
||
|
change = "#8C4F55",
|
||
|
delete = "#E26F55"
|
||
|
},
|
||
|
green = "#a4896f",
|
||
|
green1 = "#c4a98f",
|
||
|
green2 = "#ceb399",
|
||
|
hint = "#c69478",
|
||
|
info = "#A4895C",
|
||
|
magenta = "#8a4b53",
|
||
|
magenta2 = "#aa6b73",
|
||
|
none = "NONE",
|
||
|
orange = "#ff9e64",
|
||
|
purple = "#a47a7a",
|
||
|
red = "#bf472c",
|
||
|
red1 = "#df674c",
|
||
|
teal = "#c69478",
|
||
|
terminal_black = "#392D2B",
|
||
|
warning = "#f2a766",
|
||
|
yellow = "#f2a766"
|
||
|
}
|
||
|
|
||
|
local highlights = {
|
||
|
["@constructor"] = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
["@constructor.tsx"] = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
["@field"] = {
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
["@keyword"] = {
|
||
|
fg = "#a47a7a",
|
||
|
style = {
|
||
|
italic = true
|
||
|
}
|
||
|
},
|
||
|
["@keyword.function"] = {
|
||
|
fg = "#8a4b53",
|
||
|
style = {}
|
||
|
},
|
||
|
["@label"] = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
["@lsp.type.boolean"] = {
|
||
|
link = "@boolean"
|
||
|
},
|
||
|
["@lsp.type.builtinType"] = {
|
||
|
link = "@type.builtin"
|
||
|
},
|
||
|
["@lsp.type.comment"] = {
|
||
|
link = "@comment"
|
||
|
},
|
||
|
["@lsp.type.decorator"] = {
|
||
|
link = "@attribute"
|
||
|
},
|
||
|
["@lsp.type.deriveHelper"] = {
|
||
|
link = "@attribute"
|
||
|
},
|
||
|
["@lsp.type.enum"] = {
|
||
|
link = "@type"
|
||
|
},
|
||
|
["@lsp.type.enumMember"] = {
|
||
|
link = "@constant"
|
||
|
},
|
||
|
["@lsp.type.escapeSequence"] = {
|
||
|
link = "@string.escape"
|
||
|
},
|
||
|
["@lsp.type.formatSpecifier"] = {
|
||
|
link = "@punctuation.special"
|
||
|
},
|
||
|
["@lsp.type.generic"] = {
|
||
|
link = "@variable"
|
||
|
},
|
||
|
["@lsp.type.interface"] = {
|
||
|
fg = "#d27e6b"
|
||
|
},
|
||
|
["@lsp.type.keyword"] = {
|
||
|
link = "@keyword"
|
||
|
},
|
||
|
["@lsp.type.lifetime"] = {
|
||
|
link = "@storageclass"
|
||
|
},
|
||
|
["@lsp.type.namespace"] = {
|
||
|
link = "@namespace"
|
||
|
},
|
||
|
["@lsp.type.number"] = {
|
||
|
link = "@number"
|
||
|
},
|
||
|
["@lsp.type.operator"] = {
|
||
|
link = "@operator"
|
||
|
},
|
||
|
["@lsp.type.parameter"] = {
|
||
|
link = "@parameter"
|
||
|
},
|
||
|
["@lsp.type.property"] = {
|
||
|
link = "@property"
|
||
|
},
|
||
|
["@lsp.type.selfKeyword"] = {
|
||
|
link = "@variable.builtin"
|
||
|
},
|
||
|
["@lsp.type.selfTypeKeyword"] = {
|
||
|
link = "@variable.builtin"
|
||
|
},
|
||
|
["@lsp.type.string"] = {
|
||
|
link = "@string"
|
||
|
},
|
||
|
["@lsp.type.typeAlias"] = {
|
||
|
link = "@type.definition"
|
||
|
},
|
||
|
["@lsp.type.unresolvedReference"] = {
|
||
|
sp = "#df674c",
|
||
|
undercurl = true
|
||
|
},
|
||
|
["@lsp.type.variable"] = {},
|
||
|
["@lsp.typemod.class.defaultLibrary"] = {
|
||
|
link = "@type.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.enum.defaultLibrary"] = {
|
||
|
link = "@type.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.enumMember.defaultLibrary"] = {
|
||
|
link = "@constant.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.function.defaultLibrary"] = {
|
||
|
link = "@function.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.keyword.async"] = {
|
||
|
link = "@keyword.coroutine"
|
||
|
},
|
||
|
["@lsp.typemod.keyword.injected"] = {
|
||
|
link = "@keyword"
|
||
|
},
|
||
|
["@lsp.typemod.macro.defaultLibrary"] = {
|
||
|
link = "@function.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.method.defaultLibrary"] = {
|
||
|
link = "@function.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.operator.injected"] = {
|
||
|
link = "@operator"
|
||
|
},
|
||
|
["@lsp.typemod.string.injected"] = {
|
||
|
link = "@string"
|
||
|
},
|
||
|
["@lsp.typemod.struct.defaultLibrary"] = {
|
||
|
link = "@type.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.type.defaultLibrary"] = {
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
["@lsp.typemod.typeAlias.defaultLibrary"] = {
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
["@lsp.typemod.variable.callable"] = {
|
||
|
link = "@function"
|
||
|
},
|
||
|
["@lsp.typemod.variable.defaultLibrary"] = {
|
||
|
link = "@variable.builtin"
|
||
|
},
|
||
|
["@lsp.typemod.variable.injected"] = {
|
||
|
link = "@variable"
|
||
|
},
|
||
|
["@lsp.typemod.variable.static"] = {
|
||
|
link = "@constant"
|
||
|
},
|
||
|
["@namespace"] = {
|
||
|
link = "Include"
|
||
|
},
|
||
|
["@namespace.builtin"] = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
["@operator"] = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
["@parameter"] = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
["@parameter.builtin"] = {
|
||
|
fg = "#f5b985"
|
||
|
},
|
||
|
["@property"] = {
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
["@punctuation.bracket"] = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
["@punctuation.delimiter"] = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
["@punctuation.special"] = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
["@punctuation.special.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
["@string.documentation"] = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
["@string.escape"] = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
["@string.regex"] = {
|
||
|
fg = "#BC907B"
|
||
|
},
|
||
|
["@tag.delimiter.tsx"] = {
|
||
|
fg = "#9c603f"
|
||
|
},
|
||
|
["@tag.tsx"] = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
["@text.danger"] = {
|
||
|
bg = "#df674c",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
["@text.diff.add"] = {
|
||
|
link = "DiffAdd"
|
||
|
},
|
||
|
["@text.diff.delete"] = {
|
||
|
link = "DiffDelete"
|
||
|
},
|
||
|
["@text.literal.markdown_inline"] = {
|
||
|
bg = "#392D2B",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
["@text.reference"] = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
["@text.title.1.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
["@text.title.2.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
["@text.title.3.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
["@text.title.4.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
["@text.title.5.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
["@text.title.6.markdown"] = {
|
||
|
bold = true,
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
["@text.todo.checked"] = {
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
["@text.todo.unchecked"] = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
["@text.warning"] = {
|
||
|
bg = "#f2a766",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
["@type.builtin"] = {
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
["@variable"] = {
|
||
|
fg = "#E0CCAE",
|
||
|
style = {}
|
||
|
},
|
||
|
["@variable.builtin"] = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
ALEErrorSign = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
ALEWarningSign = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
AerialArrayIcon = {
|
||
|
link = "LspKindArray"
|
||
|
},
|
||
|
AerialBooleanIcon = {
|
||
|
link = "LspKindBoolean"
|
||
|
},
|
||
|
AerialClassIcon = {
|
||
|
link = "LspKindClass"
|
||
|
},
|
||
|
AerialColorIcon = {
|
||
|
link = "LspKindColor"
|
||
|
},
|
||
|
AerialConstantIcon = {
|
||
|
link = "LspKindConstant"
|
||
|
},
|
||
|
AerialConstructorIcon = {
|
||
|
link = "LspKindConstructor"
|
||
|
},
|
||
|
AerialEnumIcon = {
|
||
|
link = "LspKindEnum"
|
||
|
},
|
||
|
AerialEnumMemberIcon = {
|
||
|
link = "LspKindEnumMember"
|
||
|
},
|
||
|
AerialEventIcon = {
|
||
|
link = "LspKindEvent"
|
||
|
},
|
||
|
AerialFieldIcon = {
|
||
|
link = "LspKindField"
|
||
|
},
|
||
|
AerialFileIcon = {
|
||
|
link = "LspKindFile"
|
||
|
},
|
||
|
AerialFolderIcon = {
|
||
|
link = "LspKindFolder"
|
||
|
},
|
||
|
AerialFunctionIcon = {
|
||
|
link = "LspKindFunction"
|
||
|
},
|
||
|
AerialGuide = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
AerialInterfaceIcon = {
|
||
|
link = "LspKindInterface"
|
||
|
},
|
||
|
AerialKeyIcon = {
|
||
|
link = "LspKindKey"
|
||
|
},
|
||
|
AerialKeywordIcon = {
|
||
|
link = "LspKindKeyword"
|
||
|
},
|
||
|
AerialLine = {
|
||
|
link = "LspInlayHint"
|
||
|
},
|
||
|
AerialMethodIcon = {
|
||
|
link = "LspKindMethod"
|
||
|
},
|
||
|
AerialModuleIcon = {
|
||
|
link = "LspKindModule"
|
||
|
},
|
||
|
AerialNamespaceIcon = {
|
||
|
link = "LspKindNamespace"
|
||
|
},
|
||
|
AerialNormal = {
|
||
|
bg = "NONE",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
AerialNullIcon = {
|
||
|
link = "LspKindNull"
|
||
|
},
|
||
|
AerialNumberIcon = {
|
||
|
link = "LspKindNumber"
|
||
|
},
|
||
|
AerialObjectIcon = {
|
||
|
link = "LspKindObject"
|
||
|
},
|
||
|
AerialOperatorIcon = {
|
||
|
link = "LspKindOperator"
|
||
|
},
|
||
|
AerialPackageIcon = {
|
||
|
link = "LspKindPackage"
|
||
|
},
|
||
|
AerialPropertyIcon = {
|
||
|
link = "LspKindProperty"
|
||
|
},
|
||
|
AerialReferenceIcon = {
|
||
|
link = "LspKindReference"
|
||
|
},
|
||
|
AerialSnippetIcon = {
|
||
|
link = "LspKindSnippet"
|
||
|
},
|
||
|
AerialStringIcon = {
|
||
|
link = "LspKindString"
|
||
|
},
|
||
|
AerialStructIcon = {
|
||
|
link = "LspKindStruct"
|
||
|
},
|
||
|
AerialTextIcon = {
|
||
|
link = "LspKindText"
|
||
|
},
|
||
|
AerialTypeParameterIcon = {
|
||
|
link = "LspKindTypeParameter"
|
||
|
},
|
||
|
AerialUnitIcon = {
|
||
|
link = "LspKindUnit"
|
||
|
},
|
||
|
AerialValueIcon = {
|
||
|
link = "LspKindValue"
|
||
|
},
|
||
|
AerialVariableIcon = {
|
||
|
link = "LspKindVariable"
|
||
|
},
|
||
|
AlphaButtons = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
AlphaFooter = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
AlphaHeader = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
AlphaHeaderLabel = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
AlphaShortcut = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
Bold = {
|
||
|
bold = true
|
||
|
},
|
||
|
BufferAlternate = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
BufferAlternateERROR = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
BufferAlternateHINT = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
BufferAlternateINFO = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferAlternateIndex = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferAlternateMod = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
BufferAlternateSign = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferAlternateTarget = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
BufferAlternateWARN = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
BufferCurrent = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
BufferCurrentERROR = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
BufferCurrentHINT = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
BufferCurrentINFO = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferCurrentIndex = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferCurrentMod = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
BufferCurrentSign = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
BufferCurrentTarget = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
BufferCurrentWARN = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
BufferInactive = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#8a624e"
|
||
|
},
|
||
|
BufferInactiveERROR = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#b85844"
|
||
|
},
|
||
|
BufferInactiveHINT = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#a47c68"
|
||
|
},
|
||
|
BufferInactiveINFO = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#887351"
|
||
|
},
|
||
|
BufferInactiveIndex = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
BufferInactiveMod = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#c78b59"
|
||
|
},
|
||
|
BufferInactiveSign = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
BufferInactiveTarget = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
BufferInactiveWARN = {
|
||
|
bg = "#1e1a20",
|
||
|
fg = "#c78b59"
|
||
|
},
|
||
|
BufferLineIndicatorSelected = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
BufferOffset = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
BufferTabpageFill = {
|
||
|
bg = "#221919",
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
BufferTabpages = {
|
||
|
bg = "#16161e",
|
||
|
fg = "NONE"
|
||
|
},
|
||
|
BufferVisible = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
BufferVisibleERROR = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
BufferVisibleHINT = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
BufferVisibleINFO = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferVisibleIndex = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferVisibleMod = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
BufferVisibleSign = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
BufferVisibleTarget = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
BufferVisibleWARN = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
Character = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
CmpDocumentation = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
CmpDocumentationBorder = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
CmpGhostText = {
|
||
|
fg = "#392D2B"
|
||
|
},
|
||
|
CmpItemAbbr = {
|
||
|
bg = "NONE",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
CmpItemAbbrDeprecated = {
|
||
|
bg = "NONE",
|
||
|
fg = "#6B4035",
|
||
|
strikethrough = true
|
||
|
},
|
||
|
CmpItemAbbrMatch = {
|
||
|
bg = "NONE",
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
CmpItemAbbrMatchFuzzy = {
|
||
|
bg = "NONE",
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
CmpItemKindArray = {
|
||
|
link = "LspKindArray"
|
||
|
},
|
||
|
CmpItemKindBoolean = {
|
||
|
link = "LspKindBoolean"
|
||
|
},
|
||
|
CmpItemKindClass = {
|
||
|
link = "LspKindClass"
|
||
|
},
|
||
|
CmpItemKindCodeium = {
|
||
|
bg = "NONE",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
CmpItemKindColor = {
|
||
|
link = "LspKindColor"
|
||
|
},
|
||
|
CmpItemKindConstant = {
|
||
|
link = "LspKindConstant"
|
||
|
},
|
||
|
CmpItemKindConstructor = {
|
||
|
link = "LspKindConstructor"
|
||
|
},
|
||
|
CmpItemKindCopilot = {
|
||
|
bg = "NONE",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
CmpItemKindDefault = {
|
||
|
bg = "NONE",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
CmpItemKindEnum = {
|
||
|
link = "LspKindEnum"
|
||
|
},
|
||
|
CmpItemKindEnumMember = {
|
||
|
link = "LspKindEnumMember"
|
||
|
},
|
||
|
CmpItemKindEvent = {
|
||
|
link = "LspKindEvent"
|
||
|
},
|
||
|
CmpItemKindField = {
|
||
|
link = "LspKindField"
|
||
|
},
|
||
|
CmpItemKindFile = {
|
||
|
link = "LspKindFile"
|
||
|
},
|
||
|
CmpItemKindFolder = {
|
||
|
link = "LspKindFolder"
|
||
|
},
|
||
|
CmpItemKindFunction = {
|
||
|
link = "LspKindFunction"
|
||
|
},
|
||
|
CmpItemKindInterface = {
|
||
|
link = "LspKindInterface"
|
||
|
},
|
||
|
CmpItemKindKey = {
|
||
|
link = "LspKindKey"
|
||
|
},
|
||
|
CmpItemKindKeyword = {
|
||
|
link = "LspKindKeyword"
|
||
|
},
|
||
|
CmpItemKindMethod = {
|
||
|
link = "LspKindMethod"
|
||
|
},
|
||
|
CmpItemKindModule = {
|
||
|
link = "LspKindModule"
|
||
|
},
|
||
|
CmpItemKindNamespace = {
|
||
|
link = "LspKindNamespace"
|
||
|
},
|
||
|
CmpItemKindNull = {
|
||
|
link = "LspKindNull"
|
||
|
},
|
||
|
CmpItemKindNumber = {
|
||
|
link = "LspKindNumber"
|
||
|
},
|
||
|
CmpItemKindObject = {
|
||
|
link = "LspKindObject"
|
||
|
},
|
||
|
CmpItemKindOperator = {
|
||
|
link = "LspKindOperator"
|
||
|
},
|
||
|
CmpItemKindPackage = {
|
||
|
link = "LspKindPackage"
|
||
|
},
|
||
|
CmpItemKindProperty = {
|
||
|
link = "LspKindProperty"
|
||
|
},
|
||
|
CmpItemKindReference = {
|
||
|
link = "LspKindReference"
|
||
|
},
|
||
|
CmpItemKindSnippet = {
|
||
|
link = "LspKindSnippet"
|
||
|
},
|
||
|
CmpItemKindString = {
|
||
|
link = "LspKindString"
|
||
|
},
|
||
|
CmpItemKindStruct = {
|
||
|
link = "LspKindStruct"
|
||
|
},
|
||
|
CmpItemKindTabNine = {
|
||
|
bg = "NONE",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
CmpItemKindText = {
|
||
|
link = "LspKindText"
|
||
|
},
|
||
|
CmpItemKindTypeParameter = {
|
||
|
link = "LspKindTypeParameter"
|
||
|
},
|
||
|
CmpItemKindUnit = {
|
||
|
link = "LspKindUnit"
|
||
|
},
|
||
|
CmpItemKindValue = {
|
||
|
link = "LspKindValue"
|
||
|
},
|
||
|
CmpItemKindVariable = {
|
||
|
link = "LspKindVariable"
|
||
|
},
|
||
|
CmpItemMenu = {
|
||
|
bg = "NONE",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
CodeBlock = {
|
||
|
bg = "#16161e"
|
||
|
},
|
||
|
ColorColumn = {
|
||
|
bg = "#15161e"
|
||
|
},
|
||
|
Comment = {
|
||
|
fg = "#6B4035",
|
||
|
style = {
|
||
|
italic = true
|
||
|
}
|
||
|
},
|
||
|
Conceal = {
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
Constant = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
CurSearch = {
|
||
|
link = "IncSearch"
|
||
|
},
|
||
|
Cursor = {
|
||
|
bg = "#E0CCAE",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
CursorColumn = {
|
||
|
bg = "#241816"
|
||
|
},
|
||
|
CursorIM = {
|
||
|
bg = "#E0CCAE",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
CursorLine = {
|
||
|
bg = "#241816"
|
||
|
},
|
||
|
CursorLineNr = {
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
DapStoppedLine = {
|
||
|
bg = "#30292c"
|
||
|
},
|
||
|
DashboardCenter = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
DashboardDesc = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
DashboardFooter = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
DashboardHeader = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
DashboardIcon = {
|
||
|
bold = true,
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
DashboardKey = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
DashboardShortCut = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
Debug = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
DefinitionCount = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
DefinitionIcon = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
DiagnosticError = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
DiagnosticHint = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
DiagnosticInfo = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
DiagnosticInformation = {
|
||
|
link = "DiagnosticInfo"
|
||
|
},
|
||
|
DiagnosticUnderlineError = {
|
||
|
sp = "#df674c",
|
||
|
undercurl = true
|
||
|
},
|
||
|
DiagnosticUnderlineHint = {
|
||
|
sp = "#c69478",
|
||
|
undercurl = true
|
||
|
},
|
||
|
DiagnosticUnderlineInfo = {
|
||
|
sp = "#A4895C",
|
||
|
undercurl = true
|
||
|
},
|
||
|
DiagnosticUnderlineWarn = {
|
||
|
sp = "#f2a766",
|
||
|
undercurl = true
|
||
|
},
|
||
|
DiagnosticUnnecessary = {
|
||
|
fg = "#392D2B"
|
||
|
},
|
||
|
DiagnosticVirtualTextError = {
|
||
|
bg = "#2e232a",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
DiagnosticVirtualTextHint = {
|
||
|
bg = "#2b272e",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
DiagnosticVirtualTextInfo = {
|
||
|
bg = "#28262b",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
DiagnosticVirtualTextWarn = {
|
||
|
bg = "#30292c",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
DiagnosticWarn = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
DiagnosticWarning = {
|
||
|
link = "DiagnosticWarn"
|
||
|
},
|
||
|
DiffAdd = {
|
||
|
bg = "#353237"
|
||
|
},
|
||
|
DiffChange = {
|
||
|
bg = "#272026"
|
||
|
},
|
||
|
DiffDelete = {
|
||
|
bg = "#38262c"
|
||
|
},
|
||
|
DiffText = {
|
||
|
bg = "#703F29"
|
||
|
},
|
||
|
Directory = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
EndOfBuffer = {
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
Error = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
ErrorMsg = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
FernBranchText = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
FlashBackdrop = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
FlashLabel = {
|
||
|
bg = "#aa6b73",
|
||
|
bold = true,
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
FloatBorder = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
FloatTitle = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
FoldColumn = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
Folded = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
Foo = {
|
||
|
bg = "#aa6b73",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
Function = {
|
||
|
fg = "#d47d49",
|
||
|
style = {}
|
||
|
},
|
||
|
GitGutterAdd = {
|
||
|
fg = "#CAAF82"
|
||
|
},
|
||
|
GitGutterAddLineNr = {
|
||
|
fg = "#CAAF82"
|
||
|
},
|
||
|
GitGutterChange = {
|
||
|
fg = "#8C4F55"
|
||
|
},
|
||
|
GitGutterChangeLineNr = {
|
||
|
fg = "#8C4F55"
|
||
|
},
|
||
|
GitGutterDelete = {
|
||
|
fg = "#E26F55"
|
||
|
},
|
||
|
GitGutterDeleteLineNr = {
|
||
|
fg = "#E26F55"
|
||
|
},
|
||
|
GitSignsAdd = {
|
||
|
fg = "#CAAF82"
|
||
|
},
|
||
|
GitSignsChange = {
|
||
|
fg = "#8C4F55"
|
||
|
},
|
||
|
GitSignsDelete = {
|
||
|
fg = "#E26F55"
|
||
|
},
|
||
|
GlyphPalette1 = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
GlyphPalette2 = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
GlyphPalette3 = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
GlyphPalette4 = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
GlyphPalette6 = {
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
GlyphPalette7 = {
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
GlyphPalette9 = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
Headline = {
|
||
|
link = "Headline1"
|
||
|
},
|
||
|
Headline1 = {
|
||
|
bg = "#232028"
|
||
|
},
|
||
|
Headline2 = {
|
||
|
bg = "#252229"
|
||
|
},
|
||
|
Headline3 = {
|
||
|
bg = "#21212a"
|
||
|
},
|
||
|
Headline4 = {
|
||
|
bg = "#23212a"
|
||
|
},
|
||
|
Headline5 = {
|
||
|
bg = "#201d28"
|
||
|
},
|
||
|
Headline6 = {
|
||
|
bg = "#21202a"
|
||
|
},
|
||
|
Hlargs = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
HopNextKey = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73"
|
||
|
},
|
||
|
HopNextKey1 = {
|
||
|
bold = true,
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
HopNextKey2 = {
|
||
|
fg = "#6d5d46"
|
||
|
},
|
||
|
HopUnmatched = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
IblIndent = {
|
||
|
fg = "#6B4035",
|
||
|
nocombine = true
|
||
|
},
|
||
|
IblScope = {
|
||
|
fg = "#a47a7a",
|
||
|
nocombine = true
|
||
|
},
|
||
|
Identifier = {
|
||
|
fg = "#8a4b53",
|
||
|
style = {}
|
||
|
},
|
||
|
IlluminatedWordRead = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
IlluminatedWordText = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
IlluminatedWordWrite = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
IncSearch = {
|
||
|
bg = "#ff9e64",
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
IndentBlanklineChar = {
|
||
|
fg = "#6B4035",
|
||
|
nocombine = true
|
||
|
},
|
||
|
IndentBlanklineContextChar = {
|
||
|
fg = "#a47a7a",
|
||
|
nocombine = true
|
||
|
},
|
||
|
Italic = {
|
||
|
italic = true
|
||
|
},
|
||
|
Keyword = {
|
||
|
fg = "#a67458",
|
||
|
style = {
|
||
|
italic = true
|
||
|
}
|
||
|
},
|
||
|
LazyProgressDone = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73"
|
||
|
},
|
||
|
LazyProgressTodo = {
|
||
|
bold = true,
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
LeapBackdrop = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
LeapLabelPrimary = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73"
|
||
|
},
|
||
|
LeapLabelSecondary = {
|
||
|
bold = true,
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
LeapMatch = {
|
||
|
bg = "#aa6b73",
|
||
|
bold = true,
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
LightspeedGreyWash = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
LightspeedLabel = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73",
|
||
|
underline = true
|
||
|
},
|
||
|
LightspeedLabelDistant = {
|
||
|
bold = true,
|
||
|
fg = "#c4a98f",
|
||
|
underline = true
|
||
|
},
|
||
|
LightspeedLabelDistantOverlapped = {
|
||
|
fg = "#ceb399",
|
||
|
underline = true
|
||
|
},
|
||
|
LightspeedLabelOverlapped = {
|
||
|
fg = "#aa6b73",
|
||
|
underline = true
|
||
|
},
|
||
|
LightspeedMaskedChar = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
LightspeedOneCharMatch = {
|
||
|
bg = "#aa6b73",
|
||
|
bold = true,
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
LightspeedPendingOpArea = {
|
||
|
bg = "#aa6b73",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
LightspeedShortcut = {
|
||
|
bg = "#aa6b73",
|
||
|
bold = true,
|
||
|
fg = "#E0CCAE",
|
||
|
underline = true
|
||
|
},
|
||
|
LightspeedUnlabeledMatch = {
|
||
|
bold = true,
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
LineNr = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
LspCodeLens = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
LspFloatWinBorder = {
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
LspFloatWinNormal = {
|
||
|
bg = "#16161e"
|
||
|
},
|
||
|
LspInfoBorder = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
LspInlayHint = {
|
||
|
bg = "#231f26",
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
LspKindArray = {
|
||
|
link = "@punctuation.bracket"
|
||
|
},
|
||
|
LspKindBoolean = {
|
||
|
link = "@boolean"
|
||
|
},
|
||
|
LspKindClass = {
|
||
|
link = "@type"
|
||
|
},
|
||
|
LspKindColor = {
|
||
|
link = "Special"
|
||
|
},
|
||
|
LspKindConstant = {
|
||
|
link = "@constant"
|
||
|
},
|
||
|
LspKindConstructor = {
|
||
|
link = "@constructor"
|
||
|
},
|
||
|
LspKindEnum = {
|
||
|
link = "@lsp.type.enum"
|
||
|
},
|
||
|
LspKindEnumMember = {
|
||
|
link = "@lsp.type.enumMember"
|
||
|
},
|
||
|
LspKindEvent = {
|
||
|
link = "Special"
|
||
|
},
|
||
|
LspKindField = {
|
||
|
link = "@field"
|
||
|
},
|
||
|
LspKindFile = {
|
||
|
link = "Normal"
|
||
|
},
|
||
|
LspKindFolder = {
|
||
|
link = "Directory"
|
||
|
},
|
||
|
LspKindFunction = {
|
||
|
link = "@function"
|
||
|
},
|
||
|
LspKindInterface = {
|
||
|
link = "@lsp.type.interface"
|
||
|
},
|
||
|
LspKindKey = {
|
||
|
link = "@field"
|
||
|
},
|
||
|
LspKindKeyword = {
|
||
|
link = "@lsp.type.keyword"
|
||
|
},
|
||
|
LspKindMethod = {
|
||
|
link = "@method"
|
||
|
},
|
||
|
LspKindModule = {
|
||
|
link = "@namespace"
|
||
|
},
|
||
|
LspKindNamespace = {
|
||
|
link = "@namespace"
|
||
|
},
|
||
|
LspKindNull = {
|
||
|
link = "@constant.builtin"
|
||
|
},
|
||
|
LspKindNumber = {
|
||
|
link = "@number"
|
||
|
},
|
||
|
LspKindObject = {
|
||
|
link = "@constant"
|
||
|
},
|
||
|
LspKindOperator = {
|
||
|
link = "@operator"
|
||
|
},
|
||
|
LspKindPackage = {
|
||
|
link = "@namespace"
|
||
|
},
|
||
|
LspKindProperty = {
|
||
|
link = "@property"
|
||
|
},
|
||
|
LspKindReference = {
|
||
|
link = "@text.reference"
|
||
|
},
|
||
|
LspKindSnippet = {
|
||
|
link = "Conceal"
|
||
|
},
|
||
|
LspKindString = {
|
||
|
link = "@string"
|
||
|
},
|
||
|
LspKindStruct = {
|
||
|
link = "@lsp.type.struct"
|
||
|
},
|
||
|
LspKindText = {
|
||
|
link = "@text"
|
||
|
},
|
||
|
LspKindTypeParameter = {
|
||
|
link = "@lsp.type.typeParameter"
|
||
|
},
|
||
|
LspKindUnit = {
|
||
|
link = "@lsp.type.struct"
|
||
|
},
|
||
|
LspKindValue = {
|
||
|
link = "@string"
|
||
|
},
|
||
|
LspKindVariable = {
|
||
|
link = "@variable"
|
||
|
},
|
||
|
LspReferenceRead = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
LspReferenceText = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
LspReferenceWrite = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
LspSagaBorderTitle = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
LspSagaCodeActionBorder = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
LspSagaCodeActionContent = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
LspSagaCodeActionTitle = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
LspSagaDefPreviewBorder = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
LspSagaFinderSelection = {
|
||
|
fg = "#714f41"
|
||
|
},
|
||
|
LspSagaHoverBorder = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
LspSagaRenameBorder = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
LspSagaSignatureHelpBorder = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
LspSignatureActiveParameter = {
|
||
|
bg = "#3d3031",
|
||
|
bold = true
|
||
|
},
|
||
|
MatchParen = {
|
||
|
bold = true,
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
MiniCompletionActiveParameter = {
|
||
|
underline = true
|
||
|
},
|
||
|
MiniCursorword = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
MiniCursorwordCurrent = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
MiniIndentscopePrefix = {
|
||
|
nocombine = true
|
||
|
},
|
||
|
MiniIndentscopeSymbol = {
|
||
|
fg = "#BF472C",
|
||
|
nocombine = true
|
||
|
},
|
||
|
MiniJump = {
|
||
|
bg = "#aa6b73",
|
||
|
fg = "#ffffff"
|
||
|
},
|
||
|
MiniJump2dSpot = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73",
|
||
|
nocombine = true
|
||
|
},
|
||
|
MiniStarterCurrent = {
|
||
|
nocombine = true
|
||
|
},
|
||
|
MiniStarterFooter = {
|
||
|
fg = "#f2a766",
|
||
|
italic = true
|
||
|
},
|
||
|
MiniStarterHeader = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
MiniStarterInactive = {
|
||
|
fg = "#6B4035",
|
||
|
style = {
|
||
|
italic = true
|
||
|
}
|
||
|
},
|
||
|
MiniStarterItem = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
MiniStarterItemBullet = {
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
MiniStarterItemPrefix = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
MiniStarterQuery = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
MiniStarterSection = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
MiniStatuslineDevinfo = {
|
||
|
bg = "#241816",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
MiniStatuslineFileinfo = {
|
||
|
bg = "#241816",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
MiniStatuslineFilename = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
MiniStatuslineInactive = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
MiniStatuslineModeCommand = {
|
||
|
bg = "#f2a766",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniStatuslineModeInsert = {
|
||
|
bg = "#a4896f",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniStatuslineModeNormal = {
|
||
|
bg = "#d47d49",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniStatuslineModeOther = {
|
||
|
bg = "#c69478",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniStatuslineModeReplace = {
|
||
|
bg = "#bf472c",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniStatuslineModeVisual = {
|
||
|
bg = "#8a4b53",
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniSurround = {
|
||
|
bg = "#ff9e64",
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
MiniTablineCurrent = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
MiniTablineFill = {
|
||
|
bg = "#15161e"
|
||
|
},
|
||
|
MiniTablineHidden = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
MiniTablineModifiedCurrent = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
MiniTablineModifiedHidden = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#b17d53"
|
||
|
},
|
||
|
MiniTablineModifiedVisible = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
MiniTablineTabpagesection = {
|
||
|
bg = "#16161e",
|
||
|
fg = "NONE"
|
||
|
},
|
||
|
MiniTablineVisible = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
MiniTestEmphasis = {
|
||
|
bold = true
|
||
|
},
|
||
|
MiniTestFail = {
|
||
|
bold = true,
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
MiniTestPass = {
|
||
|
bold = true,
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
MiniTrailspace = {
|
||
|
bg = "#bf472c"
|
||
|
},
|
||
|
ModeMsg = {
|
||
|
bold = true,
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
MoreMsg = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
MsgArea = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NavicIconsArray = {
|
||
|
link = "LspKindArray"
|
||
|
},
|
||
|
NavicIconsBoolean = {
|
||
|
link = "LspKindBoolean"
|
||
|
},
|
||
|
NavicIconsClass = {
|
||
|
link = "LspKindClass"
|
||
|
},
|
||
|
NavicIconsColor = {
|
||
|
link = "LspKindColor"
|
||
|
},
|
||
|
NavicIconsConstant = {
|
||
|
link = "LspKindConstant"
|
||
|
},
|
||
|
NavicIconsConstructor = {
|
||
|
link = "LspKindConstructor"
|
||
|
},
|
||
|
NavicIconsEnum = {
|
||
|
link = "LspKindEnum"
|
||
|
},
|
||
|
NavicIconsEnumMember = {
|
||
|
link = "LspKindEnumMember"
|
||
|
},
|
||
|
NavicIconsEvent = {
|
||
|
link = "LspKindEvent"
|
||
|
},
|
||
|
NavicIconsField = {
|
||
|
link = "LspKindField"
|
||
|
},
|
||
|
NavicIconsFile = {
|
||
|
link = "LspKindFile"
|
||
|
},
|
||
|
NavicIconsFolder = {
|
||
|
link = "LspKindFolder"
|
||
|
},
|
||
|
NavicIconsFunction = {
|
||
|
link = "LspKindFunction"
|
||
|
},
|
||
|
NavicIconsInterface = {
|
||
|
link = "LspKindInterface"
|
||
|
},
|
||
|
NavicIconsKey = {
|
||
|
link = "LspKindKey"
|
||
|
},
|
||
|
NavicIconsKeyword = {
|
||
|
link = "LspKindKeyword"
|
||
|
},
|
||
|
NavicIconsMethod = {
|
||
|
link = "LspKindMethod"
|
||
|
},
|
||
|
NavicIconsModule = {
|
||
|
link = "LspKindModule"
|
||
|
},
|
||
|
NavicIconsNamespace = {
|
||
|
link = "LspKindNamespace"
|
||
|
},
|
||
|
NavicIconsNull = {
|
||
|
link = "LspKindNull"
|
||
|
},
|
||
|
NavicIconsNumber = {
|
||
|
link = "LspKindNumber"
|
||
|
},
|
||
|
NavicIconsObject = {
|
||
|
link = "LspKindObject"
|
||
|
},
|
||
|
NavicIconsOperator = {
|
||
|
link = "LspKindOperator"
|
||
|
},
|
||
|
NavicIconsPackage = {
|
||
|
link = "LspKindPackage"
|
||
|
},
|
||
|
NavicIconsProperty = {
|
||
|
link = "LspKindProperty"
|
||
|
},
|
||
|
NavicIconsReference = {
|
||
|
link = "LspKindReference"
|
||
|
},
|
||
|
NavicIconsSnippet = {
|
||
|
link = "LspKindSnippet"
|
||
|
},
|
||
|
NavicIconsString = {
|
||
|
link = "LspKindString"
|
||
|
},
|
||
|
NavicIconsStruct = {
|
||
|
link = "LspKindStruct"
|
||
|
},
|
||
|
NavicIconsText = {
|
||
|
link = "LspKindText"
|
||
|
},
|
||
|
NavicIconsTypeParameter = {
|
||
|
link = "LspKindTypeParameter"
|
||
|
},
|
||
|
NavicIconsUnit = {
|
||
|
link = "LspKindUnit"
|
||
|
},
|
||
|
NavicIconsValue = {
|
||
|
link = "LspKindValue"
|
||
|
},
|
||
|
NavicIconsVariable = {
|
||
|
link = "LspKindVariable"
|
||
|
},
|
||
|
NavicSeparator = {
|
||
|
bg = "NONE",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NavicText = {
|
||
|
bg = "NONE",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NeoTreeDimText = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
NeoTreeNormal = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeoTreeNormalNC = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeogitBranch = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
NeogitDiffAddHighlight = {
|
||
|
bg = "#353237",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
NeogitDiffContextHighlight = {
|
||
|
bg = "#432e2e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeogitDiffDeleteHighlight = {
|
||
|
bg = "#38262c",
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
NeogitHunkHeader = {
|
||
|
bg = "#241816",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NeogitHunkHeaderHighlight = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeogitRemote = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
NeotestAdapterName = {
|
||
|
bold = true,
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
NeotestBorder = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeotestDir = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeotestExpandMarker = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeotestFailed = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
NeotestFile = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
NeotestFocused = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
NeotestIndent = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeotestMarked = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeotestNamespace = {
|
||
|
fg = "#ceb399"
|
||
|
},
|
||
|
NeotestPassed = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
NeotestRunning = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
NeotestSkipped = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeotestTarget = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NeotestTest = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NeotestWinSelect = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NoiceCompletionItemKindArray = {
|
||
|
link = "LspKindArray"
|
||
|
},
|
||
|
NoiceCompletionItemKindBoolean = {
|
||
|
link = "LspKindBoolean"
|
||
|
},
|
||
|
NoiceCompletionItemKindClass = {
|
||
|
link = "LspKindClass"
|
||
|
},
|
||
|
NoiceCompletionItemKindColor = {
|
||
|
link = "LspKindColor"
|
||
|
},
|
||
|
NoiceCompletionItemKindConstant = {
|
||
|
link = "LspKindConstant"
|
||
|
},
|
||
|
NoiceCompletionItemKindConstructor = {
|
||
|
link = "LspKindConstructor"
|
||
|
},
|
||
|
NoiceCompletionItemKindDefault = {
|
||
|
bg = "NONE",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NoiceCompletionItemKindEnum = {
|
||
|
link = "LspKindEnum"
|
||
|
},
|
||
|
NoiceCompletionItemKindEnumMember = {
|
||
|
link = "LspKindEnumMember"
|
||
|
},
|
||
|
NoiceCompletionItemKindEvent = {
|
||
|
link = "LspKindEvent"
|
||
|
},
|
||
|
NoiceCompletionItemKindField = {
|
||
|
link = "LspKindField"
|
||
|
},
|
||
|
NoiceCompletionItemKindFile = {
|
||
|
link = "LspKindFile"
|
||
|
},
|
||
|
NoiceCompletionItemKindFolder = {
|
||
|
link = "LspKindFolder"
|
||
|
},
|
||
|
NoiceCompletionItemKindFunction = {
|
||
|
link = "LspKindFunction"
|
||
|
},
|
||
|
NoiceCompletionItemKindInterface = {
|
||
|
link = "LspKindInterface"
|
||
|
},
|
||
|
NoiceCompletionItemKindKey = {
|
||
|
link = "LspKindKey"
|
||
|
},
|
||
|
NoiceCompletionItemKindKeyword = {
|
||
|
link = "LspKindKeyword"
|
||
|
},
|
||
|
NoiceCompletionItemKindMethod = {
|
||
|
link = "LspKindMethod"
|
||
|
},
|
||
|
NoiceCompletionItemKindModule = {
|
||
|
link = "LspKindModule"
|
||
|
},
|
||
|
NoiceCompletionItemKindNamespace = {
|
||
|
link = "LspKindNamespace"
|
||
|
},
|
||
|
NoiceCompletionItemKindNull = {
|
||
|
link = "LspKindNull"
|
||
|
},
|
||
|
NoiceCompletionItemKindNumber = {
|
||
|
link = "LspKindNumber"
|
||
|
},
|
||
|
NoiceCompletionItemKindObject = {
|
||
|
link = "LspKindObject"
|
||
|
},
|
||
|
NoiceCompletionItemKindOperator = {
|
||
|
link = "LspKindOperator"
|
||
|
},
|
||
|
NoiceCompletionItemKindPackage = {
|
||
|
link = "LspKindPackage"
|
||
|
},
|
||
|
NoiceCompletionItemKindProperty = {
|
||
|
link = "LspKindProperty"
|
||
|
},
|
||
|
NoiceCompletionItemKindReference = {
|
||
|
link = "LspKindReference"
|
||
|
},
|
||
|
NoiceCompletionItemKindSnippet = {
|
||
|
link = "LspKindSnippet"
|
||
|
},
|
||
|
NoiceCompletionItemKindString = {
|
||
|
link = "LspKindString"
|
||
|
},
|
||
|
NoiceCompletionItemKindStruct = {
|
||
|
link = "LspKindStruct"
|
||
|
},
|
||
|
NoiceCompletionItemKindText = {
|
||
|
link = "LspKindText"
|
||
|
},
|
||
|
NoiceCompletionItemKindTypeParameter = {
|
||
|
link = "LspKindTypeParameter"
|
||
|
},
|
||
|
NoiceCompletionItemKindUnit = {
|
||
|
link = "LspKindUnit"
|
||
|
},
|
||
|
NoiceCompletionItemKindValue = {
|
||
|
link = "LspKindValue"
|
||
|
},
|
||
|
NoiceCompletionItemKindVariable = {
|
||
|
link = "LspKindVariable"
|
||
|
},
|
||
|
NonText = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
Normal = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NormalFloat = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NormalNC = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NormalSB = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NotifyBackground = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyDEBUGBody = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyDEBUGBorder = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#32262b"
|
||
|
},
|
||
|
NotifyDEBUGIcon = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
NotifyDEBUGTitle = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
NotifyERRORBody = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyERRORBorder = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#553231"
|
||
|
},
|
||
|
NotifyERRORIcon = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
NotifyERRORTitle = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
NotifyINFOBody = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyINFOBorder = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#433c36"
|
||
|
},
|
||
|
NotifyINFOIcon = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
NotifyINFOTitle = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
NotifyTRACEBody = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyTRACEBorder = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#43383f"
|
||
|
},
|
||
|
NotifyTRACEIcon = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
NotifyTRACETitle = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
NotifyWARNBody = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
NotifyWARNBorder = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#5b4539"
|
||
|
},
|
||
|
NotifyWARNIcon = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
NotifyWARNTitle = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
NvimTreeFolderIcon = {
|
||
|
bg = "NONE",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NvimTreeGitDeleted = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
NvimTreeGitDirty = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
NvimTreeGitNew = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
NvimTreeImageFile = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NvimTreeIndentMarker = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
NvimTreeNormal = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NvimTreeNormalNC = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
NvimTreeOpenedFile = {
|
||
|
bg = "#241816"
|
||
|
},
|
||
|
NvimTreeRootFolder = {
|
||
|
bold = true,
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NvimTreeSpecialFile = {
|
||
|
fg = "#a47a7a",
|
||
|
underline = true
|
||
|
},
|
||
|
NvimTreeSymlink = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
NvimTreeWinSeparator = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#16161e"
|
||
|
},
|
||
|
Operator = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
Pmenu = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
PmenuSbar = {
|
||
|
bg = "#222229"
|
||
|
},
|
||
|
PmenuSel = {
|
||
|
bg = "#5b3932"
|
||
|
},
|
||
|
PmenuThumb = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
PreProc = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
Question = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
QuickFixLine = {
|
||
|
bg = "#714f41",
|
||
|
bold = true
|
||
|
},
|
||
|
RainbowDelimiterBlue = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
RainbowDelimiterCyan = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
RainbowDelimiterGreen = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
RainbowDelimiterOrange = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
RainbowDelimiterRed = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
RainbowDelimiterViolet = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
RainbowDelimiterYellow = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
ReferencesCount = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
ReferencesIcon = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
ScrollbarError = {
|
||
|
bg = "NONE",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
ScrollbarErrorHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
ScrollbarHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "NONE"
|
||
|
},
|
||
|
ScrollbarHint = {
|
||
|
bg = "NONE",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
ScrollbarHintHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
ScrollbarInfo = {
|
||
|
bg = "NONE",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
ScrollbarInfoHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
ScrollbarMisc = {
|
||
|
bg = "NONE",
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
ScrollbarMiscHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
ScrollbarSearch = {
|
||
|
bg = "NONE",
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
ScrollbarSearchHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
ScrollbarWarn = {
|
||
|
bg = "NONE",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
ScrollbarWarnHandle = {
|
||
|
bg = "#241816",
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
Search = {
|
||
|
bg = "#f49d69",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
SignColumn = {
|
||
|
bg = "#1a1b26",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
SignColumnSB = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
Sneak = {
|
||
|
bg = "#8a4b53",
|
||
|
fg = "#241816"
|
||
|
},
|
||
|
SneakScope = {
|
||
|
bg = "#714f41"
|
||
|
},
|
||
|
Special = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
SpecialKey = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
SpellBad = {
|
||
|
sp = "#df674c",
|
||
|
undercurl = true
|
||
|
},
|
||
|
SpellCap = {
|
||
|
sp = "#f2a766",
|
||
|
undercurl = true
|
||
|
},
|
||
|
SpellLocal = {
|
||
|
sp = "#A4895C",
|
||
|
undercurl = true
|
||
|
},
|
||
|
SpellRare = {
|
||
|
sp = "#c69478",
|
||
|
undercurl = true
|
||
|
},
|
||
|
Statement = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
StatusLine = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
StatusLineNC = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
String = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
Substitute = {
|
||
|
bg = "#bf472c",
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
TSNodeKey = {
|
||
|
bold = true,
|
||
|
fg = "#aa6b73"
|
||
|
},
|
||
|
TSNodeUnmatched = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
TSRainbowBlue = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
TSRainbowCyan = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
TSRainbowGreen = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
TSRainbowOrange = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
TSRainbowRed = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
TSRainbowViolet = {
|
||
|
fg = "#a47a7a"
|
||
|
},
|
||
|
TSRainbowYellow = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
TabLine = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
TabLineFill = {
|
||
|
bg = "#15161e"
|
||
|
},
|
||
|
TabLineSel = {
|
||
|
bg = "#d47d49",
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
TargetWord = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
TelescopeBorder = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#9e3e2b"
|
||
|
},
|
||
|
TelescopeNormal = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
Title = {
|
||
|
bold = true,
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
Todo = {
|
||
|
bg = "#f2a766",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
TreesitterContext = {
|
||
|
bg = "#5b3932"
|
||
|
},
|
||
|
TroubleCount = {
|
||
|
bg = "#6B4035",
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
TroubleNormal = {
|
||
|
bg = "#16161e",
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
TroubleText = {
|
||
|
fg = "#F2A766"
|
||
|
},
|
||
|
Type = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
Underlined = {
|
||
|
underline = true
|
||
|
},
|
||
|
VertSplit = {
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
Visual = {
|
||
|
bg = "#714f41"
|
||
|
},
|
||
|
VisualNOS = {
|
||
|
bg = "#714f41"
|
||
|
},
|
||
|
WarningMsg = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
WhichKey = {
|
||
|
fg = "#a67458"
|
||
|
},
|
||
|
WhichKeyDesc = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
WhichKeyFloat = {
|
||
|
bg = "#16161e"
|
||
|
},
|
||
|
WhichKeyGroup = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
WhichKeySeparator = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
WhichKeySeperator = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
WhichKeyValue = {
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
Whitespace = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
WildMenu = {
|
||
|
bg = "#714f41"
|
||
|
},
|
||
|
WinSeparator = {
|
||
|
bold = true,
|
||
|
fg = "#15161e"
|
||
|
},
|
||
|
YankyPut = {
|
||
|
link = "IncSearch"
|
||
|
},
|
||
|
YankyYanked = {
|
||
|
link = "IncSearch"
|
||
|
},
|
||
|
debugBreakpoint = {
|
||
|
bg = "#28262b",
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
debugPC = {
|
||
|
bg = "#16161e"
|
||
|
},
|
||
|
diffAdded = {
|
||
|
fg = "#A4895C"
|
||
|
},
|
||
|
diffChanged = {
|
||
|
fg = "#66292F"
|
||
|
},
|
||
|
diffFile = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
diffIndexLine = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
diffLine = {
|
||
|
fg = "#6B4035"
|
||
|
},
|
||
|
diffNewFile = {
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
diffOldFile = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
diffRemoved = {
|
||
|
fg = "#BF472C"
|
||
|
},
|
||
|
dosIniLabel = {
|
||
|
link = "@property"
|
||
|
},
|
||
|
healthError = {
|
||
|
fg = "#df674c"
|
||
|
},
|
||
|
healthSuccess = {
|
||
|
fg = "#c4a98f"
|
||
|
},
|
||
|
healthWarning = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
helpCommand = {
|
||
|
bg = "#392D2B",
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
htmlH1 = {
|
||
|
bold = true,
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
htmlH2 = {
|
||
|
bold = true,
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
illuminatedCurWord = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
illuminatedWord = {
|
||
|
bg = "#6B4035"
|
||
|
},
|
||
|
lCursor = {
|
||
|
bg = "#E0CCAE",
|
||
|
fg = "#1a1b26"
|
||
|
},
|
||
|
markdownCode = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
markdownCodeBlock = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
markdownH1 = {
|
||
|
bold = true,
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
markdownH2 = {
|
||
|
bold = true,
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
markdownHeadingDelimiter = {
|
||
|
bold = true,
|
||
|
fg = "#ff9e64"
|
||
|
},
|
||
|
markdownLinkText = {
|
||
|
fg = "#d47d49",
|
||
|
underline = true
|
||
|
},
|
||
|
mkdCodeDelimiter = {
|
||
|
bg = "#392D2B",
|
||
|
fg = "#E0CCAE"
|
||
|
},
|
||
|
mkdCodeEnd = {
|
||
|
bold = true,
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
mkdCodeStart = {
|
||
|
bold = true,
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
qfFileName = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
qfLineNr = {
|
||
|
fg = "#A67458"
|
||
|
},
|
||
|
rainbowcol1 = {
|
||
|
fg = "#bf472c"
|
||
|
},
|
||
|
rainbowcol2 = {
|
||
|
fg = "#f2a766"
|
||
|
},
|
||
|
rainbowcol3 = {
|
||
|
fg = "#a4896f"
|
||
|
},
|
||
|
rainbowcol4 = {
|
||
|
fg = "#c69478"
|
||
|
},
|
||
|
rainbowcol5 = {
|
||
|
fg = "#d47d49"
|
||
|
},
|
||
|
rainbowcol6 = {
|
||
|
fg = "#8a4b53"
|
||
|
},
|
||
|
rainbowcol7 = {
|
||
|
fg = "#a47a7a"
|
||
|
}
|
||
|
}
|