We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ee8d8 commit 66e023eCopy full SHA for 66e023e
README.md
@@ -32,7 +32,7 @@ colors.map(c => c.colorjs.toString({format: "hex"}));
32
// Filter colors based on Lightness value
33
colors.filter(c => c.colorjs.oklch.l > .1);
34
35
-// Sort Brightest to Darkest
+// Sort Lightest colors first
36
colors.sort((a, b) => {
37
return b.colorjs.oklch.l - a.colorjs.oklch.l;
38
})
0 commit comments