-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (58 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
green: {
1: '#009174',
2: '#F4F4F4',
3: '#52BD94',
},
dark: {
1: '#242328',
},
grey: {
1: '#A6A6A6',
2: '#4F4F4F',
3: '#333333',
4: '#8D8D8D',
5: '#F9FAFB',
},
},
keyframes: {
heartBeat: {
'0%, 100%, 40%': {
transform: 'scale(1)',
},
'30%,50%': {
transform: 'scale(1.2)',
},
},
fadeIn: {
'0%': {
opacity: 0,
},
'100%': {
opacity: 1,
},
},
},
animation: {
heartBeat: 'heartBeat 1.5s infinite both',
fadeIn: 'fadeIn 0.2s linear',
},
fontFamily: {
dmSans: ["'DM Sans'", 'sans-serif'],
},
backgroundImage: {
gradient: 'linear-gradient(101deg, #009174 20.94%, #52BD94 100%)',
},
boxShadow: {
'inner-grey': '0px 4px 8px 0px rgba(0, 0, 0, 0.16) inset',
},
},
},
plugins: [],
};