-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
72 lines (70 loc) · 2.25 KB
/
Copy pathtailwind.config.ts
File metadata and controls
72 lines (70 loc) · 2.25 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
base: {
blue: '#0052FF',
dark: '#050B18',
navy: '#0A1628',
card: '#0D1F38',
},
arena: {
cyan: '#00D4FF',
purple: '#7C3AED',
pink: '#EC4899',
gold: '#F59E0B',
green: '#10B981',
red: '#EF4444',
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-arena': 'linear-gradient(135deg, #050B18 0%, #0A1628 50%, #050B18 100%)',
'gradient-blue': 'linear-gradient(135deg, #0052FF 0%, #00D4FF 100%)',
'gradient-purple-blue': 'linear-gradient(135deg, #7C3AED 0%, #0052FF 100%)',
'gradient-card': 'linear-gradient(135deg, rgba(13,31,56,0.8) 0%, rgba(5,11,24,0.9) 100%)',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'shimmer': 'shimmer 2s linear infinite',
'spin-slow': 'spin 8s linear infinite',
'gradient': 'gradient 8s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(0, 82, 255, 0.3)' },
'100%': { boxShadow: '0 0 40px rgba(0, 82, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4)' },
},
shimmer: {
'0%': { backgroundPosition: '-1000px 0' },
'100%': { backgroundPosition: '1000px 0' },
},
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
backdropBlur: {
xs: '2px',
},
fontFamily: {
sans: ['Inter var', 'Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
},
},
},
plugins: [],
};
export default config;