From df728cd2e3d749ce69e4098bd61f175ad748c060 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 23 Jan 2025 16:39:02 +0000 Subject: [PATCH] Change opacity values to be hex-friendly --- system/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/default.nix b/system/default.nix index cb1869f8..3f709c6b 100644 --- a/system/default.nix +++ b/system/default.nix @@ -218,10 +218,10 @@ base16Scheme = lib.mkDefault "${pkgs.base16-schemes}/share/themes/onedark.yaml"; polarity = config.lib.stylix.scheme.variant; opacity = { - applications = 0.8; - desktop = 0.6; - popups = 0.4; - terminal = 0.8; + applications = 0.8125; # 0x0.D + desktop = 0.6875; # 0x0.B + popups = 0.4375; # 0x0.7 + terminal = 0.8125; # 0x0.D }; cursor = { package = pkgs.volantes-cursors;