-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.45 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
module.exports = {
content: [
'./resources/**/*.antlers.html',
'./resources/**/*.antlers.php',
'./resources/**/*.blade.php',
'./resources/**/*.vue',
'./content/**/*.md'
],
theme: {
extend: {
colors: {
'pink-50': '#FFE3EC',
'pink-100': '#FFB8D2',
'pink-200': '#FF8DB8',
'pink-300': '#F364A2',
'pink-400': '#E5388C',
'pink-500': '#C81E7E',
'pink-600': '#9F1A6A',
'pink-700': '#A30664',
'pink-800': '#870557',
'pink-900': '#620042',
'accent': '#9446ED'
},
fontFamily: {
'drawn': ['Delicious Handrawn', 'sans-serif'],
'headline': ['DynaPuff', 'sans-serif'],
'body': ['Poppins', 'sans-serif'],
'stencil': ['Saira Stencil One', 'monospace']
},
boxShadow: {
'solid-brand': '#870557 8px 8px 0 0',
'pressed-brand': '#870557 0 0 0 0',
}
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
screens: {
sm: '700px',
md: '800px',
lg: '984px',
xl: '1100px',
'2xl': '1200px',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}