mirror of
https://github.com/gabehf/base46.git
synced 2026-03-15 02:05:56 -07:00
minor fixes
This commit is contained in:
parent
897c90cc79
commit
9d23caba95
3 changed files with 26 additions and 4 deletions
|
|
@ -37,7 +37,11 @@ if ui.hl_override then
|
||||||
for group, _ in pairs(user_highlights) do
|
for group, _ in pairs(user_highlights) do
|
||||||
for key, color in pairs(user_highlights[group]) do
|
for key, color in pairs(user_highlights[group]) do
|
||||||
if key == "fg" or key == "bg" then
|
if key == "fg" or key == "bg" then
|
||||||
user_highlights[group][key] = colors[color]
|
if color:sub(1, 1) == "#" then
|
||||||
|
user_highlights[group][key] = color
|
||||||
|
else
|
||||||
|
user_highlights[group][key] = colors[color]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,25 @@ M.base_16 = {
|
||||||
base0C = "#e69875",
|
base0C = "#e69875",
|
||||||
base0D = "#a7c080",
|
base0D = "#a7c080",
|
||||||
base0E = "#e67e80",
|
base0E = "#e67e80",
|
||||||
base0F = "#d699b6",
|
base0F = "#e67e80",
|
||||||
|
}
|
||||||
|
|
||||||
|
M.polish_hl = {
|
||||||
|
TSPunctBracket = {
|
||||||
|
fg = M.base_30.red,
|
||||||
|
},
|
||||||
|
|
||||||
|
TSTag = {
|
||||||
|
fg = M.base_30.orange,
|
||||||
|
},
|
||||||
|
|
||||||
|
TSTagDelimiter = {
|
||||||
|
fg = M.base_30.green,
|
||||||
|
},
|
||||||
|
|
||||||
|
TSConstructor = {
|
||||||
|
fg = "#7fbbb3",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
M = require("base46").override_theme(M, "everforest")
|
M = require("base46").override_theme(M, "everforest")
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,6 @@ M.base_16 = {
|
||||||
base0F = "#986801",
|
base0F = "#986801",
|
||||||
}
|
}
|
||||||
|
|
||||||
M = require("base46").override_theme(M, "one_light")
|
|
||||||
|
|
||||||
M.polish_hl = {
|
M.polish_hl = {
|
||||||
WhichKeyDesc = {
|
WhichKeyDesc = {
|
||||||
fg = M.base_30.white,
|
fg = M.base_30.white,
|
||||||
|
|
@ -90,4 +88,6 @@ M.polish_hl = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M = require("base46").override_theme(M, "one_light")
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue