Skip to content

Commit

Permalink
fix: add tinted-vim support to base16 theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ducklin5 committed Dec 28, 2024
1 parent 2a5bae9 commit ff3e35d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lua/lualine/themes/base16.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,19 @@ local function setup_base16_vim()
}
end

if vim.g.tinted_gui00 and vim.g.tinted_gui0F then
return setup {
bg = vim.g.tinted_gui01,
alt_bg = vim.g.tinted_gui02,
dark_fg = vim.g.tinted_gui03,
fg = vim.g.tinted_gui04,
light_fg = vim.g.tinted_gui05,
normal = vim.g.tinted_gui0D,
insert = vim.g.tinted_gui0B,
visual = vim.g.tinted_gui0E,
replace = vim.g.tinted_gui09,
}
end
return nil
end

Expand Down

0 comments on commit ff3e35d

Please sign in to comment.