-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 1.01 KB
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
module.exports = {
content: [
'./pages/**/*.tsx',
'./components/**/*.tsx',
'./layouts/**/*.tsx',
],
plugins: [
require('tailwindcss-only-child'),
require('@tailwindcss/typography'),
],
theme: {
extend: {
colors: {
brand: '#ff1744',
coffee: '#8a0020',
current: 'currentColor',
},
typography: {
DEFAULT: {
css: {
color: 'currentColor',
lineHeight: '1.5',
a: {
textDecoration: 'none',
'&:hover': {
textDecoration: 'none',
},
},
'h1,h2,h3,h4,h5,i,strong': {
color: 'currentColor',
},
},
},
},
},
},
};