-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 823 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (42 loc) · 823 Bytes
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
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
headline: ['Tienne'],
default: ['Roboto']
},
colors: {
darkPurple: {
100: '#130F1C',
200: '#56447F',
300: '#8E82A9'
},
gray: {
0: '#000000',
10: '#1F1B29',
25: '#2E2A36',
50: '#5A5761',
100: '#5A5761',
200: '#BAB9BD',
300: '#DEDEE0',
400: '#ECECEE',
500: '#F3F3F5',
600: '#FAFAFA'
},
purple: {
100: '#651FFF',
200: '#4C17BF',
300: '#331080'
},
danger: {
100: '#F34335',
200: '#B63228',
300: '#7A221B'
}
}
},
},
}