mirror of
https://github.com/gabehf/base46.git
synced 2026-03-08 23:18:15 -07:00
misc
This commit is contained in:
parent
62494966cc
commit
21a09af1dd
3 changed files with 5 additions and 4 deletions
|
|
@ -33,6 +33,8 @@ local defaults = {
|
|||
bg = theme.base00,
|
||||
},
|
||||
|
||||
DevIconDefault = { fg = colors.red },
|
||||
|
||||
Bold = {
|
||||
bold = true,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
DevIconDefault = { fg = colors.red },
|
||||
DevIconc = { fg = colors.blue },
|
||||
DevIconcss = { fg = colors.blue },
|
||||
DevIcondeb = { fg = colors.cyan },
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ local statusline_theme = config.statusline.theme
|
|||
|
||||
-- default values from the colors palette
|
||||
local statusline_bg = colors.statusline_bg
|
||||
local light_grey
|
||||
local light_grey = generate_color(colors.light_grey, 8)
|
||||
|
||||
if statusline_theme == "vscode" or statusline_theme == "vscode_colored" then
|
||||
light_grey = generate_color(colors.light_grey, theme_type == "dark" and 15 or -15)
|
||||
if (statusline_theme == "vscode" or statusline_theme == "vscode_colored") and theme_type == "light" then
|
||||
light_grey = generate_color(colors.light_grey, -15)
|
||||
end
|
||||
|
||||
if config.transparency then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue