-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
54 lines (41 loc) · 1.13 KB
/
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
48
49
50
51
52
53
54
const Color = require('color');
const minimums = {
aaa: 7,
aa: 4.5,
aaLarge: 3
};
module.exports = (colors) => {
const colorResults = [];
for (const [name, hex] of Object.entries(colors)) {
const colorObject = Color(hex);
const color = {
name,
hex: colorObject.hex(),
labelColor: colorObject.isDark() ? 'white' : 'black',
combinations: []
};
for (const [combinationName, combinationHex] of Object.entries(colors)) {
const combColorObject = Color(combinationHex);
const combination = {
name: combinationName,
hex: combColorObject.hex(),
contrast: colorObject.contrast(combColorObject),
get accessibility() {
const { aaa, aa, aaLarge } = minimums;
if (this.contrast >= aaa) {
return 'AAA';
} else if (this.contrast >= aa) {
return 'AA';
} else if (this.contrast >= aaLarge) {
return 'AA18';
} else {
return 'Fail';
}
}
};
color.combinations.push(combination);
}
colorResults.push(color);
}
return colorResults;
};