You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
857 B
Lua

2 years ago
local c = require("base46.colors")
local colors = require("base46").get_theme_tb "base_30"
2 years ago
-- local theme = require("base46").get_theme_tb "base_16"
2 years ago
local ts_context_hl = c.change_hex_saturation(colors["yellow"], -20)
local ts_context_hl = c.change_hex_lightness(ts_context_hl, -55)
2 years ago
2 years ago
local highlights = {
-- TreesitterContext = {
-- bg = ts_context_hl,
-- },
2 years ago
InlayHint = {
fg = "#a9a19a",
},
Comment = {
fg = c.change_hex_lightness(colors["one_bg"], 20),
},
St_file_sep_rev = {
fg = colors.statusline_bg,
bg = colors.lightbg,
10 months ago
},
DiagnosticUnderlineError = {
fg = c.change_hex_lightness(colors["red"], 5),
underline = true,
},
2 years ago
}
function set_hl()
for hl, col in pairs(highlights) do
vim.api.nvim_set_hl(0, hl, col)
end
end
-- setup section
set_hl()
2 years ago