-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
47 lines (40 loc) · 1.13 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
module.exports = {
content: [
'./_site/**/*.html',
'./_includes/**/*.html',
'./_layouts/**/*.html',
'./_posts/*.md',
'./*.html',
],
theme: {
spacing: {
'0' : '0',
'sm' : 'var(--space-size-sm)',
'base' : 'var(--space-size-base)',
'md' : 'var(--space-size-md)',
'lg' : 'var(--space-size-lg)',
'xl' : 'var(--space-size-xl)',
'xxl' : 'var(--space-size-xxl)',
'xxxl' : 'var(--space-size-xxxl)',
'giga' : 'var(--space-size-giga)'
},
fontSize: {
'sm' : 'var(--font-size-sm)',
'base' : 'var(--font-size-base)',
'md' : 'var(--font-size-md)',
'lg' : 'var(--font-size-lg)',
'xl' : 'var(--font-size-xl)',
'giga' : 'var(--font-size-giga)',
'ultra' : 'var(--font-size-ultra)',
},
extend: {
fontFamily: {
'title': ['Title', 'Helvetica', 'Arial', 'sans-serif'],
},
},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
}