From 84358cff4b5079440d0a6316fccae65a10181bb3 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Fri, 13 Jun 2025 18:59:02 -0300 Subject: [PATCH] add `bg-translucent-primary` as an alias for `bg-translucent` --- ags/style/_colors.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/ags/style/_colors.scss b/ags/style/_colors.scss index 47febd8..b487360 100644 --- a/ags/style/_colors.scss +++ b/ags/style/_colors.scss @@ -7,6 +7,7 @@ $bg-secondary: functions.toRGB(color.adjust($color: wal.$color1, $lightness: -16 $bg-tertiary: functions.toRGB(color.adjust($color: $bg-secondary, $lightness: 10%)); $bg-light: wal.$foreground; $bg-translucent: functions.toRGB(color.change($color: $bg-primary, $alpha: 75%)); +$bg-translucent-primary: $bg-translucent; $bg-translucent-secondary: functions.toRGB(color.change($color: $bg-translucent, $alpha: 78%)); $fg-primary: wal.$foreground; $fg-light: $bg-primary;