Update theme specifics to lua
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
$activeBorderColor = rgb(dcd7ba)
|
||||
|
||||
general {
|
||||
col.active_border = $activeBorderColor
|
||||
}
|
||||
|
||||
group {
|
||||
col.border_active = $activeBorderColor
|
||||
}
|
||||
|
||||
# Kanagawa backdrop is too strong for detault opacity
|
||||
windowrule = opacity 0.98 0.95, match:tag terminal
|
||||
@@ -0,0 +1,18 @@
|
||||
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" })
|
||||
Reference in New Issue
Block a user