forked from Team-COSADAMA/Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 841 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 841 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
43
44
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
h1: {
color: '#374151',
},
h2: {
color: '#374151',
},
h3: {
color: '#374151',
},
h4: {
color: '#374151',
},
}
}
})
},
borderWidth: {
DEFAULT: '0.5px',
'0': '0',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
}
},
variants: {
extend: {
translate: ['active', 'group-hover'],
transitionDuration: ['hover', 'focus'],
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
}