forked from zonetecde/random-github-repo-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
80 lines (79 loc) · 2.46 KB
/
tailwind.config.js
File metadata and controls
80 lines (79 loc) · 2.46 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
// Yellow accent palette inspired by reference image
accent: {
50: '#FFFBEB',
100: '#FFF3C4',
200: '#FFE794',
300: '#FFD454',
400: '#FFC700',
500: '#FFB800',
600: '#E69500',
700: '#B87500',
800: '#8A5700',
900: '#5C3A00',
},
// Refined dark palette
dark: {
50: '#2A2A2A',
100: '#1F1F1F',
200: '#1A1A1A',
300: '#161616',
400: '#121212',
500: '#0D0D0D',
600: '#0A0A0A',
700: '#070707',
800: '#050505',
900: '#000000',
},
// Glass overlay colors
glass: {
light: 'rgba(255, 255, 255, 0.05)',
medium: 'rgba(255, 255, 255, 0.1)',
dark: 'rgba(0, 0, 0, 0.3)',
}
},
boxShadow: {
// Premium shadow system
'glass': '0 8px 32px 0 rgba(0, 0, 0, 0.37)',
'glass-sm': '0 4px 16px 0 rgba(0, 0, 0, 0.25)',
'glow-yellow': '0 0 20px rgba(255, 199, 0, 0.3)',
'glow-yellow-lg': '0 0 40px rgba(255, 199, 0, 0.4)',
'neumorphic': '8px 8px 16px rgba(0, 0, 0, 0.5), -8px -8px 16px rgba(255, 255, 255, 0.02)',
'neumorphic-inset': 'inset 4px 4px 8px rgba(0, 0, 0, 0.5), inset -4px -4px 8px rgba(255, 255, 255, 0.02)',
},
backdropBlur: {
xs: '2px',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'float': 'float 3s ease-in-out infinite',
'slide-up': 'slideUp 0.5s ease-out',
},
keyframes: {
glow: {
'0%': { boxShadow: '0 0 20px rgba(255, 199, 0, 0.2)' },
'100%': { boxShadow: '0 0 40px rgba(255, 199, 0, 0.4)' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-dark': 'linear-gradient(135deg, #0a0a0a 0%, #161616 100%)',
},
},
},
plugins: [],
}