UNPKG
color-sort
Version:
latest (0.0.1)
0.0.1
A simple lib that sorts colors by perception.
github.com/javierbyte/color-sort
javierbyte/color-sort
color-sort
/
README.md
10 lines
(8 loc)
•
274 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
# Color Sort
A simple lib that sorts colors by perception.
# Usage
```js var colorSort = require(
'color-sort'
); var unsortedColorArray = [
'#f00'
,
'#0f0'
,
'#f0f'
,
'#a00'
,
'#a0a'
,
'#00a'
]; colorSort(unsortedColorArray) // [
'#f00'
,
'#a00'
,
'#0f0'
,
'#00a'
,
'#f0f'
,
'#a0a'
] ```