diff --git a/themes/kanagawa/hyprland.conf b/themes/kanagawa/hyprland.conf deleted file mode 100644 index 0ee92cac..00000000 --- a/themes/kanagawa/hyprland.conf +++ /dev/null @@ -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 diff --git a/themes/kanagawa/hyprland.lua b/themes/kanagawa/hyprland.lua new file mode 100644 index 00000000..b03145b6 --- /dev/null +++ b/themes/kanagawa/hyprland.lua @@ -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" }) diff --git a/themes/lumon/hyprland.conf b/themes/lumon/hyprland.conf deleted file mode 100644 index 40d21b4a..00000000 --- a/themes/lumon/hyprland.conf +++ /dev/null @@ -1,26 +0,0 @@ -$activeBorderColor = rgb(f2fcff) -$activeShadowColor = rgb(6fb8e3) -$inactiveBorderColor = rgba(30486099) -$inactiveShadowColor = rgba(30486077) - -general { - col.active_border = $activeBorderColor - col.inactive_border = $inactiveBorderColor - gaps_in = 8 - gaps_out = 16 -} - -group { - col.border_active = $activeBorderColor - col.border_inactive = $inactiveBorderColor -} - -decoration { - shadow { - enabled = true - range = 16 - render_power = 4 - color = $activeShadowColor - color_inactive = $inactiveShadowColor - } -} diff --git a/themes/lumon/hyprland.lua b/themes/lumon/hyprland.lua new file mode 100644 index 00000000..497830a3 --- /dev/null +++ b/themes/lumon/hyprland.lua @@ -0,0 +1,32 @@ +local active_border_color = "rgb(f2fcff)" +local active_shadow_color = "rgb(6fb8e3)" +local inactive_border_color = "rgba(30486099)" +local inactive_shadow_color = "rgba(30486077)" + +hl.config({ + general = { + col = { + active_border = active_border_color, + inactive_border = inactive_border_color, + }, + gaps_in = 8, + gaps_out = 16, + }, + + group = { + col = { + border_active = active_border_color, + border_inactive = inactive_border_color, + }, + }, + + decoration = { + shadow = { + enabled = true, + range = 16, + render_power = 4, + color = active_shadow_color, + color_inactive = inactive_shadow_color, + }, + }, +}) diff --git a/themes/retro-82/hyprland.conf b/themes/retro-82/hyprland.conf deleted file mode 100644 index 4d4c6ad5..00000000 --- a/themes/retro-82/hyprland.conf +++ /dev/null @@ -1,9 +0,0 @@ -$activeBorderColor = rgb(faa968) - -general { - col.active_border = $activeBorderColor -} - -group { - col.border_active = $activeBorderColor -} diff --git a/themes/retro-82/hyprland.lua b/themes/retro-82/hyprland.lua new file mode 100644 index 00000000..ebea23d3 --- /dev/null +++ b/themes/retro-82/hyprland.lua @@ -0,0 +1,15 @@ +local active_border_color = "rgb(faa968)" + +hl.config({ + general = { + col = { + active_border = active_border_color, + }, + }, + + group = { + col = { + border_active = active_border_color, + }, + }, +})