forked from AceDataCloud/Nexior
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
85 lines (85 loc) · 2.35 KB
/
Copy pathtailwind.config.js
File metadata and controls
85 lines (85 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95'
},
surface: {
0: '#ffffff',
1: '#f8fafc',
2: '#f1f5f9',
3: '#e2e8f0',
dark0: '#0b0d17',
dark1: '#111427',
dark2: '#1a1d2e',
dark3: '#252840'
}
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif'],
display: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'sans-serif']
},
boxShadow: {
glow: '0 0 20px rgba(139, 92, 246, 0.15)',
'glow-lg': '0 0 40px rgba(139, 92, 246, 0.25)',
'glow-sm': '0 0 10px rgba(139, 92, 246, 0.1)',
card: '0 4px 24px rgba(0, 0, 0, 0.06)',
'card-hover': '0 8px 32px rgba(0, 0, 0, 0.1)',
'card-dark': '0 4px 24px rgba(0, 0, 0, 0.4)',
'card-dark-hover': '0 8px 32px rgba(0, 0, 0, 0.5)'
},
borderRadius: {
'2xl': '1rem',
'3xl': '1.5rem',
'4xl': '2rem'
},
spacing: {
18: '4.5rem',
88: '22rem'
},
animation: {
'fade-in': 'fadeIn 0.3s ease-out',
'slide-up': 'slideUp 0.3s ease-out',
shimmer: 'shimmer 2s linear infinite',
'pulse-glow': 'pulseGlow 2s ease-in-out infinite'
},
keyframes: {
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' }
},
slideUp: {
from: { opacity: '0', transform: 'translateY(8px)' },
to: { opacity: '1', transform: 'translateY(0)' }
},
shimmer: {
from: { backgroundPosition: '-200% 0' },
to: { backgroundPosition: '200% 0' }
},
pulseGlow: {
'0%, 100%': { boxShadow: '0 0 20px rgba(139, 92, 246, 0.15)' },
'50%': { boxShadow: '0 0 30px rgba(139, 92, 246, 0.3)' }
}
},
backdropBlur: {
xs: '4px'
}
}
},
variants: {
extend: {}
},
plugins: []
};