fix(theme): update statusline/background colors

This commit is contained in:
2024-01-09 23:12:35 +01:00
parent 6ee6dd5a2e
commit 8c08a331a6
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
local function setup() local function setup()
local custom_moonfly = require("lualine.themes.moonfly") local custom_moonfly = require("lualine.themes.moonfly")
custom_moonfly.normal.c.bg = "#000000" custom_moonfly.normal.c.bg = require("moonfly").palette.bg
require("lualine").setup({ require("lualine").setup({
options = { options = {
-1
View File
@@ -18,7 +18,6 @@ local function setup()
vim.api.nvim_create_autocmd("ColorScheme", { vim.api.nvim_create_autocmd("ColorScheme", {
pattern = "moonfly", pattern = "moonfly",
callback = function () callback = function ()
override_hl("Normal", { bg = "#000000", })
override_hl("DiffAdd", { bg = "#364143", }) override_hl("DiffAdd", { bg = "#364143", })
override_hl("DiffText", { bg = "#3e4b6b", }) override_hl("DiffText", { bg = "#3e4b6b", })
override_hl("DiffChange", { bg = "#25293c", }) override_hl("DiffChange", { bg = "#25293c", })