From f5989302446e3a50f733168c6c151cc57fa1cbed Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 4 Jan 2024 17:45:05 +0900 Subject: [PATCH] fix mako --- .../desktops/hyprland/themes/stylix/wlogout-conf.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home-manager/common/desktops/hyprland/themes/stylix/wlogout-conf.nix b/home-manager/common/desktops/hyprland/themes/stylix/wlogout-conf.nix index 8d4e7724..ddbab302 100644 --- a/home-manager/common/desktops/hyprland/themes/stylix/wlogout-conf.nix +++ b/home-manager/common/desktops/hyprland/themes/stylix/wlogout-conf.nix @@ -7,14 +7,14 @@ background-image: none; } window { - background-color: ${config.lib.stylix.colors.base05}; + background-color: "#${config.lib.stylix.colors.base05}"; } button { - color: ${config.lib.stylix.colors.base04}; + color: "#${config.lib.stylix.colors.base04}"; font-size: 0px; border-radius: 5000px; margin: 25px; - background-color: ${config.lib.stylix.colors.base01}; + background-color: "#${config.lib.stylix.colors.base01}"; border-style: solid; border-width: 3px; background-repeat: no-repeat; @@ -23,7 +23,7 @@ } button:active, button:hover { - background-color: ${config.lib.stylix.colors.base00}; + background-color: "#${config.lib.stylix.colors.base00}"; outline-style: none; }