theme fixes
This commit is contained in:
parent
f48824ac56
commit
fa77b18e94
3 changed files with 15 additions and 13 deletions
|
@ -3,12 +3,7 @@ local M = {}
|
|||
|
||||
-- Path to overriding theme and highlights files
|
||||
local highlights = require "highlights"
|
||||
M.base46 = { theme = "lunar_witch" }
|
||||
M.ui = {
|
||||
|
||||
hl_override = highlights.override,
|
||||
hl_add = highlights.add,
|
||||
|
||||
statusline = {
|
||||
order = { "mode", "file", "git", "%=", "lsp_msg", "%=", "diagnostics", "lsp", "cwd", "cursor", "grapple" },
|
||||
modules = {
|
||||
|
@ -27,5 +22,10 @@ M.ui = {
|
|||
},
|
||||
},
|
||||
}
|
||||
M.base46 = {
|
||||
hl_override = highlights.override,
|
||||
hl_add = highlights.add,
|
||||
theme = "lunar_witch",
|
||||
}
|
||||
|
||||
return M
|
||||
|
|
|
@ -149,5 +149,7 @@ M.Obsidian = function()
|
|||
end
|
||||
M.Trouble = function()
|
||||
map("n", "<leader>dx", "<cmd>Trouble diagnostics toggle<cr>", { desc = "Trouble Diagnostics" })
|
||||
map("n", "<leader>cs", "<cmd>Trouble qflist toggle<cr>", { desc = "Symbols (Trouble)" })
|
||||
map("n", "<leader>dQ", "<cmd>Trouble symbols toggle focus=false<cr>", { desc = "Quickfix List (Trouble)" })
|
||||
end
|
||||
return M
|
||||
|
|
|
@ -3,26 +3,26 @@ local M = {}
|
|||
M.base_30 = {
|
||||
black = "#010206", -- theme bg
|
||||
darker_black = "#000000",
|
||||
black2 = "#504573", -- base02
|
||||
black2 = "#74689f", -- base02
|
||||
|
||||
one_bg = "#1e1b30", -- base01
|
||||
one_bg2 = "#504573", -- base02
|
||||
one_bg3 = "#746e95", -- base03
|
||||
one_bg2 = "#74689f", -- base02
|
||||
one_bg3 = "#8781ab", -- base03
|
||||
|
||||
light_grey = "#c1c7db", -- base05
|
||||
grey_fg = "#9a9ab8", -- base04, used for comments
|
||||
grey = "#1a538d", -- accent
|
||||
grey_fg2 = "#5078a4", -- light accent, used for line numbers
|
||||
|
||||
line = "#504573", -- base02
|
||||
line = "#74689f", -- base02
|
||||
|
||||
baby_pink = "#f3709a", -- pink
|
||||
nord_blue = "#1a538d", -- accent
|
||||
orange = "#eaa950",
|
||||
|
||||
statusline_bg = "#1e1b30", -- base01
|
||||
lightbg = "#504573", -- base02
|
||||
lightbg2 = "#504573", -- base02
|
||||
lightbg = "#74689f", -- base02
|
||||
lightbg2 = "#74689f", -- base02
|
||||
|
||||
folder_bg = "#334773", -- ansi-blue
|
||||
pmenu_bg = "#334773", -- ansi-blue
|
||||
|
@ -46,8 +46,8 @@ M.base_30 = {
|
|||
M.base_16 = {
|
||||
base00 = "#010206", -- Default bg
|
||||
base01 = "#1e1b30", -- Lighter bg (status bar, line number, folding mks)
|
||||
base02 = "#504573", -- Selection bg,
|
||||
base03 = "#746e95", -- Comments, invisibles, line hl, ansi-bright-black
|
||||
base02 = "#74689f", -- Selection bg,
|
||||
base03 = "#8781ab", -- Comments, invisibles, line hl, ansi-bright-black
|
||||
base04 = "#9a9ab8", -- Dark fg (status bars), ansi-white
|
||||
base05 = "#c1c7db", -- Default fg (caret, delimiters, Operators), ansi-bright-white
|
||||
base06 = "#ebf6ff", -- Light fg (not often used), fg
|
||||
|
|
Loading…
Add table
Reference in a new issue