mirror of
https://github.com/gabehf/base46.git
synced 2026-03-16 10:45:55 -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,
|
bg = theme.base00,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
DevIconDefault = { fg = colors.red },
|
||||||
|
|
||||||
Bold = {
|
Bold = {
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
DevIconDefault = { fg = colors.red },
|
|
||||||
DevIconc = { fg = colors.blue },
|
DevIconc = { fg = colors.blue },
|
||||||
DevIconcss = { fg = colors.blue },
|
DevIconcss = { fg = colors.blue },
|
||||||
DevIcondeb = { fg = colors.cyan },
|
DevIcondeb = { fg = colors.cyan },
|
||||||
|
|
|
||||||
|
|
@ -10,10 +10,10 @@ local statusline_theme = config.statusline.theme
|
||||||
|
|
||||||
-- default values from the colors palette
|
-- default values from the colors palette
|
||||||
local statusline_bg = colors.statusline_bg
|
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
|
if (statusline_theme == "vscode" or statusline_theme == "vscode_colored") and theme_type == "light" then
|
||||||
light_grey = generate_color(colors.light_grey, theme_type == "dark" and 15 or -15)
|
light_grey = generate_color(colors.light_grey, -15)
|
||||||
end
|
end
|
||||||
|
|
||||||
if config.transparency then
|
if config.transparency then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue