basic overhead changes

This commit is contained in:
venus
2026-08-23 21:16:30 -05:00
parent 4037267d07
commit 9caa1f45f7
2 changed files with 7 additions and 52 deletions

View File

@@ -1,7 +1,7 @@
background = rgba(000000ff)
base = rgba(000000ff)
text = rgba(e8d8ffff)
alternate_base = rgba(110d1aff)
bright_text = rgba(000000ff)
accent = rgba(b58fffff)
accent_secondary = rgba(c79affff)
background = rgba(191724ff)
base = rgba(191724ff)
text = rgba(e0def4ff)
alternate_base = rgba(26233aff)
bright_text = rgba(191724ff)
accent = rgba(ebbcbaff)
accent_secondary = rgba(9ccfd8ff)

View File

@@ -1,45 +0,0 @@
-- Generated by Noctalia
local primary = "rgb(c8c4d7)"
local surface = "rgb(141314)"
local secondary = "rgb(c9c5cd)"
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
}