-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.28 KB
/
tailwind.config.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
module.exports = {
content: ['./src/**/*.{html,ts,scss}'],
theme: {
extend: {
colors: {
grey: {
10: '#f7f9fb',
20: '#f4f6f7',
30: '#eceff1',
40: '#dde2e6',
50: '#c0c4c8',
60: '#3e3f49',
70: '#2b2a33',
80: '#1d1d22',
90: '#09090e',
},
lapisMain: '#413ee1',
lapis: {
30: '#759cfe',
50: '#5b7fff',
70: '#4443e6',
80: '#94abf5',
90: '#392ed6',
100: '#4f59f5',
120: '#392ed6',
},
midnight: {
60: '#404264',
80: '#1A1D45',
100: '#000330',
},
mintMain: '#1DDDA6',
mint: {
10: '#a3f4d4',
30: '#7aebc1',
50: '#1ddda6',
70: '#02c28b',
80: '#dbfaed',
100: '#A1F2D4',
120: '#7AEBC1',
},
lemon: {
120: '#FFF37E',
},
neutral: {
30: '#c0c4c8',
50: '#6b6e76',
70: '#323239',
90: '#1e1e23',
400: '#09090e',
},
nickel: '#6B6E76',
alizarinCrimson: '#E02020',
},
},
container: {
padding: '20px',
center: true,
},
},
plugins: [],
};