-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (61 loc) 路 1.64 KB
/
Copy pathtailwind.config.js
File metadata and controls
61 lines (61 loc) 路 1.64 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
/** @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}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
glass: {
dark: 'rgba(15, 23, 42, 0.75)',
light: 'rgba(255, 255, 255, 0.12)',
border: 'rgba(6, 182, 212, 0.4)',
borderDark: 'rgba(255, 255, 255, 0.1)',
},
cyan: {
neon: '#06B6D4',
glow: '#22D3EE',
},
cobalt: {
neon: '#1D4ED8',
glow: '#3B82F6',
},
cosmic: {
900: '#030712',
800: '#0B0F19',
700: '#0F172A',
600: '#1E293B',
},
},
boxShadow: {
glass: '0 8px 32px 0 rgba(0, 0, 0, 0.37)',
'glass-glow': '0 0 25px rgba(6, 182, 212, 0.35)',
'neon-cyan': '0 0 20px rgba(6, 182, 212, 0.5)',
'neon-cobalt': '0 0 20px rgba(29, 78, 216, 0.5)',
},
backdropBlur: {
xs: '2px',
glass: '16px',
},
animation: {
'pulse-glow': 'pulseGlow 3s ease-in-out infinite',
'spin-slow': 'spin 12s linear infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
pulseGlow: {
'0%, 100%': { opacity: '0.6', filter: 'drop-shadow(0 0 8px #06B6D4)' },
'50%': { opacity: '1', filter: 'drop-shadow(0 0 16px #22D3EE)' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-6px)' },
},
},
},
},
plugins: [],
}