forked from iodigital-com/io-technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrandColors.js
65 lines (63 loc) · 2.14 KB
/
brandColors.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
55
56
57
58
59
60
61
62
63
64
65
/**
* "iO-BrandGuide 2.0 2023.pdf" color themes
*/
const colors = {
io_green: {
50: '#ffffff', // Greyscale color: White
100: '#f4f4f4', // Greyscale color: Grey 10
200: '#c4c4c4', // Greyscale color: Grey 30
300: '#747474', // Greyscale color: Grey 70
400: '#dce5e4', // Secondary color: Base Green
500: '#c4d1ce', // Secondary color: Calm Green
600: '#0017ee', // Primary color: Energetic Blue
700: '#242424', // Greyscale color: Grey 90
800: '#000000', // Greyscale color: Black
900: '#000000',
},
io_beige: {
50: '#ffffff', // Greyscale color: White
100: '#f4f4f4', // Greyscale color: Grey 10
200: '#c4c4c4', // Greyscale color: Grey 30
300: '#747474', // Greyscale color: Grey 70
400: '#ebe8e3', // Secondary color: Base Beige
500: '#e1cfbf', // Secondary color: Calm Beige
600: '#0017ee', // Primary color: Energetic Blue
700: '#242424', // Greyscale color: Grey 90
800: '#000000', // Greyscale color: Black
900: '#000000',
},
io_blue: {
50: '#ffffff', // Greyscale color: White
100: '#f4f4f4', // Greyscale color: Grey 10
200: '#c4c4c4', // Greyscale color: Grey 30
300: '#747474', // Greyscale color: Grey 70
400: '#dce1e5', // Secondary color: Base Blue
500: '#bdcad1', // Secondary color: Calm Blue
600: '#0017ee', // Primary color: Energetic Blue
700: '#242424', // Greyscale color: Grey 90
800: '#000000', // Greyscale color: Black
900: '#000000',
},
io_pink: {
50: '#ffffff', // Greyscale color: White
100: '#f4f4f4', // Greyscale color: Grey 10
200: '#c4c4c4', // Greyscale color: Grey 30
300: '#747474', // Greyscale color: Grey 70
400: '#ebe5e3', // Secondary color: Base Pink
500: '#dcc8c2', // Secondary color: Calm Pink
600: '#0017ee', // Primary color: Energetic Blue
700: '#242424', // Greyscale color: Grey 90
800: '#000000', // Greyscale color: Black
900: '#000000',
},
}
const safelist = Object.entries(colors).reduce((acc, [name, tints]) => {
Object.keys(tints).forEach((tint) => {
acc.push(`bg-${name}-${tint}`)
})
return acc
}, [])
module.exports = {
colors,
safelist,
}