-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 905 Bytes
/
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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
media: false, // or 'media' or 'class'
theme: {
fontFamily: {
poppins: ['Poppins', 'system-ui', 'sans-serif'],
},
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
square: 'square',
roman: 'upper-roman',
},
extend: {
backgroundImage: {
'hero-pattern': "url('/images/hero-pattern.png')",
},
borderWidth: ['last', 'first'],
colors: {
'spj-red': '#F5296E',
'spj-yellow': '#F39C12',
},
shadows: {
'spj-red': '0 2px 4px 0 #FFC6C6',
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
],
};