-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (70 loc) · 2.33 KB
/
Copy pathtailwind.config.js
File metadata and controls
70 lines (70 loc) · 2.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'crypto-dark': '#0a0a0f',
'crypto-card': '#151520',
'crypto-card-hover': '#1e1e2d',
'crypto-accent': '#00d4ff',
'crypto-purple': '#8b5cf6',
'crypto-pink': '#ec4899',
'crypto-green': '#10b981',
'crypto-red': '#ef4444',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'crypto-glow': 'linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(139,92,246,0.1) 50%, rgba(236,72,153,0.1) 100%)',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'float-delayed': 'float 6s ease-in-out 2s infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'gradient-x': 'gradient-x 15s ease infinite',
'shimmer': 'shimmer 2s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(0,212,255,0.3)' },
'100%': { boxShadow: '0 0 40px rgba(0,212,255,0.6), 0 0 60px rgba(139,92,246,0.3)' },
},
'gradient-x': {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
},
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
},
boxShadow: {
'crypto': '0 0 40px rgba(0,212,255,0.15)',
'crypto-lg': '0 0 60px rgba(0,212,255,0.25)',
'glow-cyan': '0 0 30px rgba(0,212,255,0.4)',
'glow-purple': '0 0 30px rgba(139,92,246,0.4)',
'glow-green': '0 0 30px rgba(16,185,129,0.4)',
},
backdropBlur: {
'xs': '2px',
},
},
},
plugins: [],
}