New: New UI color-squeme

This commit is contained in:
2025-11-04 19:29:33 +00:00
parent 07dfd7966c
commit 2ac56f210b
3 changed files with 28 additions and 12 deletions
+26 -10
View File
@@ -1,14 +1,30 @@
-- lua/plugins/colorscheme.lua
require('github-theme').setup({
-- Default options:
require('kanagawa').setup({
compile = false, -- enable compiling the colorscheme
undercurl = true, -- enable undercurls
commentStyle = { italic = true },
functionStyle = {},
keywordStyle = { italic = true},
statementStyle = { bold = true },
typeStyle = {},
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = { -- add/modify theme and palette colors
palette = {},
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
},
overrides = function(colors) -- add/modify highlights
return {}
end,
theme = "wave", -- Load "wave" theme
background = { -- map the value of 'background' option to a theme
dark = "wave", -- try "dragon" !
light = "lotus"
},
})
vim.cmd("colorscheme github_dark_default")
-- Optional: set contrast, italic comments, etc
vim.g.gruvbox_contrast_dark = "hard" -- options: "soft", "medium", "hard"
vim.g.gruvbox_invert_selection = "0"
vim.g.gruvbox_italic = 1
vim.g.gruvbox_bold = 1
-- setup must be called before loading
vim.cmd("colorscheme kanagawa-dragon")