-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
47 lines (41 loc) · 1010 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { colorSets, categories } from './sets/index'
function getCategory(name) {
try {
return categories[name]
} catch(_) {
return null
}
}
function getSet(name) {
const colorSet = colorSets.find(s => s.name == name)
if (typeof colorSet === 'undefined') {
return getRandomColors()
}
return colorSet
}
function getColors(set, ...sets) {
let colors = []
colors = getSet(set).colors
if (sets[0]) {
sets.forEach(s => colors = colors.concat(getSet(s).colors))
}
return colors
}
function getRandomColors(selection) {
let colors = []
if (selection) {
selection.forEach(sl => colors.push(getSet(sl)))
return colors[Math.floor(Math.random() * colors.length)].colors
}
return colorSets[Math.floor(Math.random() * colorSets.length)].colors
}
function getRandomColorsFromCategory(category) {
const selected = getCategory(category)
return getRandomColors(selected)
}
export {
getColors,
getCategory,
getRandomColors,
getRandomColorsFromCategory,
}