-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.41 KB
/
tailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
adobe: {
red: '#FF0000',
blue: '#1473E6',
gray: {
50: '#F8F9FA',
100: '#F1F3F4',
200: '#E8EAED',
300: '#DADCE0',
400: '#BDC1C6',
500: '#9AA0A6',
600: '#80868B',
700: '#5F6368',
800: '#3C4043',
900: '#202124'
}
}
},
animation: {
'bounce-gentle': 'bounce-gentle 2s infinite',
'pulse-slow': 'pulse 3s infinite',
'fade-in': 'fade-in 0.5s ease-out',
'slide-up': 'slide-up 0.3s ease-out',
'scale-in': 'scale-in 0.2s ease-out'
},
keyframes: {
'bounce-gentle': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-4px)' }
},
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
'slide-up': {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' }
},
'scale-in': {
'0%': { transform: 'scale(0.9)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' }
}
}
}
},
plugins: []
}