mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
117 lines
3.8 KiB
Lua
117 lines
3.8 KiB
Lua
return {
|
|
flavour = "mocha",
|
|
transparent_background = true,
|
|
color_overrides = {
|
|
mocha = {
|
|
base = "#0E1019",
|
|
mantle = "#0D0F17",
|
|
crust = "#0C0D14",
|
|
surface0 = "#1a1c2d",
|
|
surface1 = "#343959",
|
|
surface2 = "#41476F",
|
|
overlay0 = "#3F4256",
|
|
overlay1 = "#5B5F7C",
|
|
overlay2 = "#767BA0",
|
|
text = "#eceef4",
|
|
},
|
|
},
|
|
no_italic = true,
|
|
no_bold = true,
|
|
highlight_overrides = {
|
|
mocha = function(colors)
|
|
return {
|
|
Visual = { bg = colors.overlay1 },
|
|
|
|
-- Floating windows
|
|
NormalFloat = { fg = colors.text, bg = colors.mantle },
|
|
FloatTitle = { fg = colors.base, bg = colors.blue },
|
|
FloatBorder = { fg = colors.surface1, bg = colors.mantle },
|
|
|
|
-- Window separator
|
|
WinSeparator = { fg = colors.surface0 },
|
|
NeoTreeWinSeparator = { link = "WinSeparator" },
|
|
|
|
-- Menus
|
|
Pmenu = { fg = colors.text, bg = colors.mantle },
|
|
|
|
-- NoiceMini = { link = "NormalFloat" },
|
|
WhichKeyFloat = { link = "Pmenu" },
|
|
|
|
-- indent lines
|
|
IblScope = { fg = colors.surface0 },
|
|
|
|
IncSearch = { bg = colors.yellow },
|
|
|
|
-- LSP
|
|
-- LspReferenceText = { bg = colors.surface0 },
|
|
-- LspReferenceRead = { link = "LspReferenceText" },
|
|
-- LspReferenceWrite = { link = "LspReferenceText" },
|
|
--
|
|
-- -- telescope
|
|
TelescopeNormal = { bg = colors.crust },
|
|
TelescopeBorder = { fg = colors.crust, bg = colors.crust },
|
|
TelescopePromptNormal = { bg = colors.mantle },
|
|
TelescopePromptPrefix = { fg = colors.mauve },
|
|
TelescopePromptBorder = { fg = colors.mantle, bg = colors.mantle },
|
|
TelescopePromptTitle = { fg = colors.crust, bg = colors.blue },
|
|
TelescopePreviewTitle = { fg = colors.crust, bg = colors.mauve },
|
|
TelescopeSelection = { fg = colors.text, bg = colors.surface0 },
|
|
|
|
-- Statusline
|
|
StatusLine = { fg = colors.text, bg = colors.mantle },
|
|
StatusLineNormal = { fg = colors.text, bg = colors.mantle },
|
|
StatusLineSeparator = { fg = colors.surface0, bg = colors.mantle },
|
|
StatusLineInsert = { fg = colors.base, bg = colors.blue },
|
|
StatusLineVisual = { fg = colors.base, bg = colors.mauve },
|
|
StatusLineCommand = { fg = colors.base, bg = colors.yellow },
|
|
StatusLineReplace = { fg = colors.base, bg = colors.maroon },
|
|
|
|
-- Syntax
|
|
PreProc = { link = "Include" },
|
|
Operator = { fg = colors.rosewater },
|
|
Function = { link = "@text" },
|
|
Delimiter = { link = "@text" },
|
|
Include = { fg = colors.mauve },
|
|
Keyword = { fg = colors.yellow },
|
|
Repeat = { link = "Keyword" },
|
|
Conditional = { link = "Keyword" },
|
|
Type = { fg = colors.blue },
|
|
String = { fg = colors.lavender },
|
|
Exception = { link = "Keyword" },
|
|
["@constructor"] = { link = "Function" },
|
|
["@variable"] = { fg = colors.green },
|
|
["@variable.builtin"] = { link = "@variable" },
|
|
["@variable.parameter"] = { link = "@parameter" },
|
|
["@variable.member"] = { link = "@variable" },
|
|
["@parameter"] = { link = "@variable" },
|
|
["@keyword.function"] = { link = "Keyword" },
|
|
["@keyword.return"] = { link = "Keyword" },
|
|
["@keyword.operator"] = { link = "Keyword" },
|
|
["@property"] = { link = "@variable" },
|
|
["@tag"] = { link = "Keyword" },
|
|
["@tag.delimiter"] = { link = "@text" },
|
|
["@punctuation"] = { link = "@text" },
|
|
["@module"] = { link = "@text" },
|
|
["@punctuation.bracket"] = { link = "@punctuation" },
|
|
["@lsp.type.property"] = { link = "@variable" },
|
|
|
|
-- PHP specific
|
|
["@class_name.php"] = { link = "@text" },
|
|
["@extend_name.php"] = { link = "@text" },
|
|
["@implements_name.php"] = { link = "@text" },
|
|
["@namespace_name.php"] = { link = "@text" },
|
|
["@namespace_alias.php"] = { link = "@text" },
|
|
}
|
|
end,
|
|
},
|
|
integrations = {
|
|
cmp = true,
|
|
treesitter = true,
|
|
barbar = true,
|
|
neotree = true,
|
|
noice = true,
|
|
telescope = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
}
|