-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (57 loc) · 1.62 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
extend: {
keyframes: {
shimmer: {
'0%': { transform: 'translateX(-150%)' },
'100%': { transform: 'translateX(120%)' },
},
},
animation: {
shimmer: 'shimmer 3s ease-in-out infinite',
},
boxShadow: {
sm: '0px 2px 2px rgba(0, 0, 0, 0.15);',
},
backgroundPosition: {
'left-bottom': 'left bottom 8rem',
'right-top-5': 'right top 5rem',
'right-top-10': 'right top 10rem',
'right-top-12': 'right top 12rem',
'right-top-15': 'right top 15rem',
},
backgroundSize: {
80: '80px',
110: '110px',
190: '190px',
350: '350px',
560: '560px',
'95%': '95%',
},
backgroundImage: {
'shape-1': 'url(/src/assets/shape-1.svg)',
'shape-2': 'url(/src/assets/shape-2.svg)',
'shape-3': 'url(/src/assets/shape-3.svg)',
paws: 'url(/src/assets/paws.svg)',
skeleton:
'linear-gradient(to right, rgba(188, 188, 188, 0) 0, rgba(188, 188, 188, 0.2) 40%, rgba(188, 188, 188, 0.3) 60%, rgba(188, 188, 188, 0))',
},
fontFamily: {
sans: 'Poppins, sans-serif',
},
colors: {
'brand-primary': '#3772FF',
'brand-secondary': '#36D6AD',
'brand-tertiary': '#FC7071',
'brand-coral-100': '#FF9D9E',
'brand-cream': '#FCF0E3',
'brand-gray-50': '#F7F7F7',
'brand-gray-300': '#BCBCBC',
'brand-gray-500': '#737380',
},
},
},
plugins: [],
};