Skip to content

Commit

Permalink
fix(lualine): lualine b section looks unpleasant
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Jan 22, 2024
1 parent e5b180f commit 4ce1044
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/lualine/themes/dullahan.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
local colors = require("dullahan.colors").setup({ transform = true })
local config = require("dullahan.config").options
local util = require("dullahan.util")

local dullahan = {}

dullahan.normal = {
a = { bg = colors.blue, fg = colors.black },
b = { bg = colors.fg, fg = colors.black },
b = { bg = util.lighten(colors.bg_statusline, 0.9, colors.fg), fg = colors.fg },
c = { bg = colors.bg_statusline, fg = colors.fg },
}

Expand Down

0 comments on commit 4ce1044

Please sign in to comment.