Update colors in theme and lazygit config to ensure readability

This commit is contained in:
Daniel McKnight 2025-06-11 21:07:04 -07:00
parent cbd055ad78
commit ecdc2c2b86
2 changed files with 38 additions and 13 deletions

View file

@ -0,0 +1,4 @@
gui:
authorColors:
'Daniel McKnight': '#cb9eff'
'*': '#71b7ff'

View file

@ -1,15 +1,36 @@
return {
"projekt0n/github-nvim-theme",
name = "github-theme",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require("github-theme").setup({
options = {
transparent = true,
},
})
vim.cmd("colorscheme github_dark_default")
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#222222" })
end,
"projekt0n/github-nvim-theme",
name = "github-theme",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require("github-theme").setup({
options = {
transparent = true,
},
})
vim.cmd("colorscheme github_dark_default")
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#222222" })
vim.api.nvim_set_hl(0, "WinSeparator", { fg = "#008b8b" })
vim.api.nvim_set_hl(0, "VertSplit", { fg = "#008b8b" })
vim.api.nvim_set_hl(0, "dircolorsColor0_1", { fg = "#91cbff" })
vim.api.nvim_set_hl(0, "dircolorsColor11_1", { bg = "#91cbff" })
vim.api.nvim_set_hl(0, "MiniStarterItemBullet", { bg = "#484f58" })
vim.api.nvim_set_hl(0, "FloatBorder", { fg = "#484f58" })
-- vim.api.nvim_set_hl(0, "NvimTreeEndOfBuffer", { bg = "#000000"})
--vim.api.nvim_set_hl(0, "NeoTreeEndOfBuffer", { fg = "#04070d" })
vim.api.nvim_set_hl(0, "RedrawDebugClear", { fg = "#000000" })
vim.api.nvim_set_hl(0, "BufferDefaultCurrentHINT", { fg = "#fdfdfd", bg = "#6e7681" })
vim.api.nvim_set_hl(0, "DevIconDefaultCurrent", { fg = "#2e63ff", bg = "#6e7681" })
vim.api.nvim_set_hl(0, "NeoTreeTabSeparatorActive", { fg = "#000000" })
vim.api.nvim_set_hl(0, "dircolorsDirectory", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "DevIconIcalendar", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "DevIconIfb", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "DevIconIcs", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "DevIconIcal", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "DevIconFedora", { fg = "#71b7ff" })
vim.api.nvim_set_hl(0, "BufferDefaultCurrentINFO", { fg = "#39c5cf" })
-- vim.api.nvim_set_hl(0, "EndOfBuffer", { fg = "#000000" })
vim.api.nvim_set_hl(0, "MiniStatuslineModeOther", { fg = "#7d8590" })
end,
}