-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
39 lines (38 loc) · 953 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
39
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
safelist: [
// needed because of dynamic value in WrappdPhotos.jsx
'col-span-6',
'col-span-4',
],
theme: {
extend: {
keyframes: {
lightup: {
'0%, 100%': { background: 'none' },
'50%': { background: 'rgba(234, 179, 8, 0.7)' },
},
},
backgroundImage: {
'wrappd-gradient': 'linear-gradient(193deg, #480DE8 0%, #EE8434 100%)',
},
colors: {
wrappdYellow: '#EE8434',
wrappdBlue: '#480DE8',
wrappdBlack: '#1C1D21',
},
animation: {
lightup: 'lightup 1s ease-in-out',
},
gridTemplateColumns: {
500: 'repeat(500, minmax(0, 1fr))',
min1Max2: 'repeat(auto-fit, minmax(0, 1fr))',
},
gridTemplateRows: {
'auto-1fr': 'auto 1fr 28px',
},
},
},
plugins: [],
};