-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
60 lines (60 loc) · 1.16 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
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
safelist: [
{
pattern: /^col-span-/,
variants: ['sm', 'md', 'lg'],
},
{
pattern: /^row-span-/,
variants: ['sm', 'md', 'lg'],
},
{
pattern: /^order-/,
variants: ['sm', 'md', 'lg'],
},
],
theme: {
fontFamily: {
sans: ['IBM Plex Sans', 'sans-serif'],
},
container: {
center: true,
padding: '2rem',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#6A46F5',
secondary: '#FF6771',
tertiary: '#535353',
cream: '#FFF7E8',
white: '#ffffff',
black: '#000000',
},
extend: {
fontFamily: {
hurricane: ['Hurricane', 'serif'],
},
order: {
13: '13',
14: '14',
15: '15',
16: '16',
17: '17',
18: '18',
19: '19',
20: '20',
21: '21',
22: '22',
23: '23',
24: '24',
},
},
},
plugins: [require('@tailwindcss/aspect-ratio')],
};