This commit is contained in:
Krishna Ayyalasomayajula
2026-05-09 12:41:44 -05:00
parent 216e0f166d
commit 01e226bbd7
5 changed files with 55 additions and 8 deletions
+15 -6
View File
@@ -9,14 +9,23 @@ return {
---@type AstroUIOpts
opts = {
-- change colorscheme
colorscheme = "catppuccin",
colorscheme = "github_dark_high_contrast",
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
highlights = {
init = { -- this table overrides highlights in all themes
-- Normal = { bg = "#000000" },
},
astrodark = { -- a table of overrides/changes when applying the astrotheme theme
-- Normal = { bg = "#000000" },
init = {},
github_dark_high_contrast = {
CursorLine = { bg = "#111111" },
CursorLineNr = { fg = "#ffffff", bold = true },
FloatBorder = { fg = "#8b949e", bg = "#000000" },
LineNr = { fg = "#6e7681" },
Normal = { bg = "#000000" },
NormalFloat = { bg = "#000000" },
Pmenu = { bg = "#000000" },
PmenuSel = { fg = "#ffffff", bg = "#1f2328", bold = true },
SignColumn = { bg = "#000000" },
StatusLine = { fg = "#ffffff", bg = "#111111" },
TabLineSel = { fg = "#ffffff", bg = "#111111", bold = true },
Visual = { bg = "#1f2328" },
},
},
-- Icons can be configured throughout the interface