-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 940 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 940 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
module.exports = {
content: [
'./layouts/**/*.html',
'./content/**/*.md',
'./assets/css/main.css'
],
safelist: [
'score-badge-range-low',
'score-badge-range-limited',
'score-badge-range-good',
'score-badge-range-high'
],
theme: {
extend: {
colors: {
primary: '#1e3a5f',
accent: '#0d9488',
muted: '#64748b',
yes: '#15803d',
no: '#b91c1c',
border: '#e2e8f0'
},
maxWidth: {
content: '960px'
},
borderRadius: {
DEFAULT: '8px',
card: '14px'
},
boxShadow: {
card: '0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04)'
},
fontSize: {
'page-title': ['1.75rem', { lineHeight: '1.3' }],
'section': ['1.125rem', { lineHeight: '1.4' }],
'body': ['1rem', { lineHeight: '1.6' }],
'small': ['0.875rem', { lineHeight: '1.5' }]
}
}
}
}