Skip to content

Commit 66e023e

Browse files
committed
More accurate comment
1 parent f2ee8d8 commit 66e023e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ colors.map(c => c.colorjs.toString({format: "hex"}));
3232
// Filter colors based on Lightness value
3333
colors.filter(c => c.colorjs.oklch.l > .1);
3434

35-
// Sort Brightest to Darkest
35+
// Sort Lightest colors first
3636
colors.sort((a, b) => {
3737
return b.colorjs.oklch.l - a.colorjs.oklch.l;
3838
})

0 commit comments

Comments
 (0)