-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
97 lines (97 loc) · 2.82 KB
/
Copy pathtailwind.config.js
File metadata and controls
97 lines (97 loc) · 2.82 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
86
87
88
89
90
91
92
93
94
95
96
97
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
},
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
950: '#082f49',
},
secondary: {
50: '#fffbeb',
100: '#fef3c7',
200: '#fde68a',
300: '#fcd34d',
400: '#fbbf24',
500: '#f59e0b',
600: '#d97706',
700: '#b45309',
800: '#92400e',
900: '#78350f',
950: '#451a03',
},
surface: {
DEFAULT: '#0f0d1a',
50: '#1a1726',
100: '#221f30',
200: '#2a2640',
300: '#332e4a',
400: '#3d3757',
},
muted: {
DEFAULT: '#9b95a8',
light: '#b8b3c4',
dark: '#6b6578',
},
},
animation: {
'pulse-glow': 'pulseGlow 2s ease-in-out infinite',
'scan': 'scan 2s ease-in-out infinite',
'fade-in': 'fadeIn 0.3s ease-out forwards',
'slide-up': 'slideUp 0.3s ease-out forwards',
'slide-in-right': 'slideInRight 0.3s ease-out forwards',
'shimmer': 'shimmer 2s linear infinite',
'float': 'float 3s ease-in-out infinite',
'spin-slow': 'spin 3s linear infinite',
},
keyframes: {
pulseGlow: {
'0%, 100%': { boxShadow: '0 0 5px rgba(14, 165, 233, 0.3)' },
'50%': { boxShadow: '0 0 25px rgba(14, 165, 233, 0.6), 0 0 50px rgba(14, 165, 233, 0.2)' },
},
scan: {
'0%, 100%': { transform: 'translateY(0)', opacity: '0.5' },
'50%': { transform: 'translateY(10px)', opacity: '1' },
},
fadeIn: {
from: { opacity: '0', transform: 'translateY(8px)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
slideUp: {
from: { opacity: '0', transform: 'translateY(16px)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
slideInRight: {
from: { opacity: '0', transform: 'translateX(-12px)' },
to: { opacity: '1', transform: 'translateX(0)' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-6px)' },
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
};