From 82caabb0dcc1d23175b5728c65f2c4881e482bd9 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sun, 22 Sep 2024 19:43:08 +0200 Subject: [PATCH] style/colors.nix: add alpha option --- modules/options/style/colors.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/options/style/colors.nix b/modules/options/style/colors.nix index bb2712c..ef88e94 100644 --- a/modules/options/style/colors.nix +++ b/modules/options/style/colors.nix @@ -93,6 +93,13 @@ in { Whether the scheme is dark or light ''; }; + alpha = mkOption { + type = str; + default = 0.85; + description = '' + The alpha value for the colorscheme + ''; + }; }; }; }