mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
60 lines
851 B
Nix
60 lines
851 B
Nix
{ pkgs, lib, self }:
|
|
|
|
let
|
|
inherit (self.colors.rgb) RGB;
|
|
inherit (self.colors.hsl) HSL;
|
|
|
|
hslSample = HSL {
|
|
h = 254;
|
|
s = 100;
|
|
l = 45;
|
|
};
|
|
in lib.runTests {
|
|
testsBasicHsl = {
|
|
expr = HSL {
|
|
h = 245;
|
|
s = 16;
|
|
l = 60;
|
|
};
|
|
expected = {
|
|
h = 245;
|
|
s = 16;
|
|
l = 60;
|
|
};
|
|
};
|
|
|
|
testsBasicHsl2 = {
|
|
expr = HSL {
|
|
h = 350;
|
|
s = 16;
|
|
l = 60;
|
|
a = 100;
|
|
};
|
|
expected = {
|
|
h = 350;
|
|
s = 16;
|
|
l = 60;
|
|
a = 100;
|
|
};
|
|
};
|
|
|
|
testsToRgb = {
|
|
expr = self.colors.hsl.toRgb hslSample;
|
|
expected = RGB {
|
|
r = 54;
|
|
g = 0;
|
|
b = 230;
|
|
};
|
|
};
|
|
|
|
testsToHex = {
|
|
expr = self.colors.hsl.toHex hslSample;
|
|
expected = "3600E6";
|
|
};
|
|
|
|
testsToHex' = {
|
|
expr = self.colors.hsl.toHex' hslSample;
|
|
expected = "3600E6FF";
|
|
};
|
|
}
|