-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'poker-green': {
light: '#35654d',
DEFAULT: '#2c4c3e',
dark: '#1a332b',
},
'poker-brown': {
light: '#6d4c3d',
DEFAULT: '#4a3728',
dark: '#2a1f17',
}
},
animation: {
'deal': 'dealCard 0.3s ease-out forwards',
'fade-in': 'modalFadeIn 0.3s ease-out forwards',
'slide-in': 'toastSlideIn 0.3s ease-out forwards',
},
boxShadow: {
'inner-lg': 'inset 0 0 100px rgba(0, 0, 0, 0.5)',
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
borderRadius: {
'poker': '200px',
},
zIndex: {
'60': '60',
'70': '70',
'80': '80',
'90': '90',
'100': '100',
},
transitionProperty: {
'transform': 'transform',
},
scale: {
'85': '.85',
'95': '.95',
}
},
},
plugins: [],
}