forked from speaktousdev/speaktous-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (61 loc) · 1.23 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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
fontFamily: {
serif: ['Comfortaa', 'Source Sans Pro', 'Open Sans', 'Helvetica Neue'],
sans: [
'Montserrat',
'Georgia',
'Cambria',
'Times New Roman',
'Times',
'serif',
],
},
opacity: {
0: '0',
25: '.25',
50: '.5',
75: '.75',
10: '.1',
20: '.2',
30: '.3',
40: '.4',
50: '.5',
60: '.6',
70: '.7',
80: '.8',
90: '.9',
98: '.98',
100: '1',
},
extend: {
colors: {
green: {
100: '#f0fff4',
200: '#c6f6d5',
300: '#9ae6b4',
400: '#74B757' /** Change this color */,
500: '#48bb78',
600: '#38a169',
700: '#2f855a',
800: '#276749',
900: '#22543d',
},
},
},
},
variants: {
backgroundColor: ['responsive', 'active', 'hover', 'focus'],
},
plugins: [],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
}