forked from ExpressionEngine/ExpressionEngine-User-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 864 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 864 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
42
43
44
const colors = require('tailwindcss/colors')
module.exports = {
important: true,
content: ["./docs/**/*.{html,js,md}"],
darkMode: 'media', // or 'media' or 'class'
theme: {
fontFamily: {
usual: ['usual', 'system-ui', 'sans-serif'],
},
colors: {
teal: colors.teal,
cyan: colors.cyan,
purple: {
dark: '#352670',
lighter: '#544E72',
light: '#5379DA',
},
red: '#F62958',
},
extend: {
spacing: {
'15': '3.75rem',
},
borderRadius: {
'5': '5px',
'20': '1.25rem',
},
boxShadow: {
'black': '0 2px 25px rgba(0,0,0,0.1)',
},
fontSize: {
'21': '1.3125rem',
'38': '2.375rem',
},
lineHeight: {
'61': '3.6875rem',
'55': '3.3125rem',
}
}
},
plugins: [
]
}