Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lua/base46/integrations/statusline/default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ local get_theme_tb = require("base46").get_theme_tb
local colors = get_theme_tb "base_30"
local generate_color = require("base46.colors").change_hex_lightness

local statusline_bg = config.base46.transparency and "NONE" or colors.statusline_bg
local statusline_bg = config.base46.transparency and "NONE" or colors.darker_black
local statusline_nc_bg = config.base46.transparency and "NONE" or colors.statusline_bg
local light_grey = generate_color(colors.light_grey, 8)

local M = {
StatusLine = { bg = statusline_bg },
StatusLineNC = { bg = statusline_nc_bg },
St_gitIcons = { fg = light_grey, bg = statusline_bg, bold = true },
St_Lsp = { fg = colors.nord_blue, bg = statusline_bg },
St_LspMsg = { fg = colors.green, bg = statusline_bg },
Expand Down