feat(hm-module,spaces)!: change type of colors values to integer between 0 and 255
This commit is contained in:
@@ -114,15 +114,15 @@ in {
|
||||
{...}: {
|
||||
options = {
|
||||
red = mkOption {
|
||||
type = int;
|
||||
type = ints.between 0 255;
|
||||
default = 0;
|
||||
};
|
||||
green = mkOption {
|
||||
type = int;
|
||||
type = ints.between 0 255;
|
||||
default = 0;
|
||||
};
|
||||
blue = mkOption {
|
||||
type = int;
|
||||
type = ints.between 0 255;
|
||||
default = 0;
|
||||
};
|
||||
custom = mkOption {
|
||||
|
||||
Reference in New Issue
Block a user