-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.64 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
62
63
64
65
66
module.exports = {
theme: {
fontFamily: {
sans: ['Nunito Sans', 'sans-serif'],
serif: ['PT Serif', 'serif'],
},
extend: {
colors: {
nw: {
gray: {
dark: '#373737',
text: '#2d3748',
},
},
},
typography: (theme) => ({
DEFAULT: {
css: {
color: theme('colors.nw.gray.text'),
fontWeight: '300',
h1: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
textAlign: 'center',
},
h2: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
},
h3: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
},
h4: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
},
h5: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
},
h6: {
fontFamily: '"PT Serif", serif',
color: theme('colors.nw.gray.text'),
},
a: {
color: theme('colors.nw.gray.text'),
fontWeight: '300',
},
},
},
}),
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
variants: {},
purge: {
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js',
],
},
}