-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
boxShadow: {
button: '20px 20px 60px 0 rgba(0, 0, 0, 0.50)',
'button-light': '#ddd5d559 0 5px 80px;',
'profile-img': '0 28px 60px 0 rgba(0, 0, 0, 0.50)',
'start-menu': 'rgba(255, 255, 255, 0.05 ) 0 0 6px 6px;',
},
backgroundImage: {
'off-screen': 'url(/dark-bg.png)',
'start-menu':
'linear-gradient(45deg, rgba(24,24,24,1) 0%, rgba(36,25,25,1) 76%, rgba(46,23,23,1) 100%)',
},
colors: {
'white-100': '#f5f5f5',
},
animation: {
appear: 'appear 0.7s',
'appear-down': 'appear-down 0.7s',
},
keyframes: {
appear: {
'0%': {
transform: 'translateY(-10vh)',
opacity: 0,
},
},
'appear-down': {
'0%': {
transform: 'translateY(10vh)',
opacity: 0,
},
},
},
},
},
plugins: [],
};