mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
19 lines
348 B
Lua
19 lines
348 B
Lua
local active_border_color = "rgb(dcd7ba)"
|
|
|
|
hl.config({
|
|
general = {
|
|
col = {
|
|
active_border = active_border_color,
|
|
},
|
|
},
|
|
|
|
group = {
|
|
col = {
|
|
border_active = active_border_color,
|
|
},
|
|
},
|
|
})
|
|
|
|
-- Kanagawa backdrop is too strong for default opacity.
|
|
hl.window_rule({ match = { tag = "terminal" }, opacity = "0.98 0.95" })
|