35 lines
672 B
Lua
35 lines
672 B
Lua
-- Colors template generated by Noctalia
|
|
-- Source command is:
|
|
-- dofile(os.getenv("HOME") .. "/.config/hypr/noctalia/noctalia-colors.lua")
|
|
|
|
local primary = "rgb(58a6ff)"
|
|
local surface = "rgb(010409)"
|
|
local secondary = "rgb(bc8cff)"
|
|
local error = "rgb(f85149)"
|
|
|
|
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,
|
|
},
|
|
},
|
|
},
|
|
})
|