style/colors.nix: add alpha option

This commit is contained in:
Charlie Root 2024-09-22 19:43:08 +02:00
commit 82caabb0dc

View file

@ -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
'';
};
};
};
}