fix(theme): update statusline/background colors
This commit is contained in:
@@ -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 = {
|
||||||
|
|||||||
@@ -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", })
|
||||||
|
|||||||
Reference in New Issue
Block a user