-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.57 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.57 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
56
57
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: '#F8F9FA',
accent: '#6C63FF',
success: '#4CAF50',
warning: '#FF9800',
danger: '#E53935',
gray: {
100: '#F8F9FA',
200: '#EBEBEB',
300: '#BEBEBE',
400: '#9E9E9E',
500: '#757575',
600: '#616161',
700: '#424242',
800: '#212121',
900: '#111111'
}
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
},
boxShadow: {
'clay-outer': '8px 8px 20px #BEBEBE, -8px -8px 20px #EBEBEB',
'clay-inner': 'inset 8px 8px 20px #BEBEBE, inset -8px -8px 20px #EBEBEB',
'clay-card': '8px 8px 20px #BEBEBE, -8px -8px 20px #EBEBEB',
'clay-button': '5px 5px 10px #BEBEBE, -5px -5px 10px #EBEBEB',
'clay-button-active': 'inset 5px 5px 10px #BEBEBE, inset -5px -5px 10px #EBEBEB',
},
borderRadius: {
'clay-card': '24px',
'clay-button': '16px',
'clay-input': '12px',
},
animation: {
'laser-scan': 'scan 2s infinite linear',
'pulse-scan': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
scan: {
'0%': { transform: 'translateY(0%)' },
'50%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0%)' },
}
}
},
},
plugins: [],
}