improve groupbar colouring in light mode

Amolith created

Change summary

dot_config/hypr/hyprland.conf.tmpl | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)

Detailed changes

dot_config/hypr/hyprland.conf.tmpl 🔗

@@ -123,9 +123,20 @@ gestures {
 }
 
 group {
-      insert_after_current = false
-      col.border_active = rgba(000000ee)
-      col.border_inactive = rgba(000000ee)
+    insert_after_current = false
+
+    groupbar {
+        font_family = "{{ .font }}"
+        font_size = 12
+{{- if eq .theme_variant "light" }}
+        text_color = rgb(4c4f69)
+        col.active = rgba(cdd6f4b0) rgba(cdd6f400) 0deg
+        col.inactive = rgba(dce0e8b0) rgba(dce0e800) 0deg
+{{- else if eq .theme_variant "dark" }}
+        col.active = rgba(b7bdf8)
+        col.inactive = rgba(6e738d)
+{{- end }}
+      }
 }
 
 misc {