46 lines
1.0 KiB
Lua
46 lines
1.0 KiB
Lua
-- Generated by Noctalia
|
|
|
|
local primary = "rgb(e0b6ff)"
|
|
local surface = "rgb(1d1013)"
|
|
local secondary = "rgb(ddb9f8)"
|
|
local error = "rgb(ffb4ab)"
|
|
|
|
local function apply_theme()
|
|
hl.config({
|
|
general = {
|
|
col = {
|
|
active_border = primary,
|
|
inactive_border = surface,
|
|
},
|
|
},
|
|
|
|
group = {
|
|
col = {
|
|
border_active = secondary,
|
|
border_inactive = surface,
|
|
border_locked_active = error,
|
|
border_locked_inactive = surface,
|
|
},
|
|
|
|
groupbar = {
|
|
col = {
|
|
active = secondary,
|
|
inactive = surface,
|
|
locked_active = error,
|
|
locked_inactive = surface,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
end
|
|
|
|
return {
|
|
colors = {
|
|
primary = primary,
|
|
surface = surface,
|
|
secondary = secondary,
|
|
error = error,
|
|
},
|
|
apply_theme = apply_theme
|
|
}
|