forked from mobybit/hugo-natrium-theme
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.07 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
module.exports = {
content: [
"content/**/*.md",
"layouts/**/*.html",
"../personal-website/layouts/**/*.html",
"../personal-website/content/**/*.md"
],
theme: {
container: {
center: true,
screens: {
sm: '40rem',
md: '40rem',
lg: '40rem',
xl: '45rem',
'2xl': '50rem',
},
},
letterSpacing: {
wide: ".03em"
},
extend: {
lineHeight: {
'loose': '1.7',
},
flexGrow: {
'2': 2
},
flexShrink: {
'2': 2
},
colors: {
'tp-black': 'rgba(0,0,0,.8)',
},
fontFamily: {
sans: ["-apple-system", "BlinkMacSystemFont", "avenir next", "avenir",
"segoe ui", "helvetica neue", "helvetica",
"Cantarell", "Ubuntu", "roboto", "noto", "arial", "sans-serif"],
},
gridTemplateColumns: {
'nav': 'repeat(auto-fill, minmax(80px, 1fr))',
'minimal-list-item': '15% 85%',
'list-item': '.6fr 3fr auto 1fr',
}
}
},
plugins: [],
darkMode: 'class',
}