-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.45 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'grey-darkest': '#16161C',
'grey-darker': '#1A1C23',
'grey': '#1C1E26',
'grey-lighter': '#232530',
'grey-lightest': '#2E303E',
'grey-light': '#6C6F93',
'red': '#F43E5C',
'red-lighter': '#E9436F',
'red-light': '#E95379',
'green-darker': '#27D796',
'green': '#09F7A0',
'yellow': '#FAB28E',
'syntax-purple': '#B877DB',
'syntax-cyan': '#21BFC2',
'syntax-red': '#E95678',
'syntax-red-darker': '#DA103F',
'syntax-orange': '#F09383',
'syntax-yellow': '#FAC29A',
'syntax-yellow-darker': '#FAB795',
'terminal-teal': '#26BBD9',
'terminal-cyan': '#59E3E3',
'terminal-green': '#29D398',
'terminal-pink': '#EE64AE',
'terminal-red': '#E95678',
'terminal-yellow': '#FAB795',
'elevation-grey': '#0d0d0d'
},
fontFamily: {
'display': ['Quicksand'],
'body': ['Montserrat'],
'logo': ['Doctor Glitch']
},
maxWidth: {
'1/2': '50%',
'1/4': '25%',
'3/4': '75%',
},
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
}
},
},
variants: {
extend: {},
},
plugins: [],
}