-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
113 lines (113 loc) · 3.27 KB
/
tailwind.config.js
File metadata and controls
113 lines (113 loc) · 3.27 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
colors: {
// Base neutrals
gray: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
950: '#09090b',
},
// Primary accent
accent: {
DEFAULT: '#dc2626',
light: '#ef4444',
dark: '#b91c1c',
},
// Terminal theme
terminal: {
bg: '#0a0a0a',
text: '#00ff00',
muted: '#009900',
},
// Temperature colors
temp: {
freezing: '#60a5fa',
cold: '#93c5fd',
cool: '#bfdbfe',
mild: '#fef3c7',
warm: '#fcd34d',
hot: '#f97316',
extreme: '#dc2626',
},
},
fontFamily: {
display: ['Playfair Display', 'Georgia', 'Times New Roman', 'serif'],
body: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'Consolas', 'monospace'],
},
fontSize: {
'hero': 'clamp(3rem, 10vw, 8rem)',
'display': 'clamp(2rem, 6vw, 4rem)',
},
letterSpacing: {
'mega': '0.2em',
'ultra': '0.3em',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out forwards',
'fade-in-up': 'fadeInUp 0.6s ease-out forwards',
'slide-in-right': 'slideInRight 0.5s ease-out forwards',
'pulse-slow': 'pulse 3s ease-in-out infinite',
'float': 'float 6s ease-in-out infinite',
'shimmer': 'shimmer 2s linear infinite',
'draw-line': 'drawLine 1.5s ease-out forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideInRight: {
'0%': { opacity: '0', transform: 'translateX(20px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
drawLine: {
'0%': { strokeDashoffset: '1000' },
'100%': { strokeDashoffset: '0' },
},
},
backdropBlur: {
xs: '2px',
},
transitionTimingFunction: {
'out-expo': 'cubic-bezier(0.16, 1, 0.3, 1)',
'out-back': 'cubic-bezier(0.34, 1.56, 0.64, 1)',
'in-out-expo': 'cubic-bezier(0.87, 0, 0.13, 1)',
},
boxShadow: {
'glass': '0 8px 32px rgba(0, 0, 0, 0.1)',
'glass-dark': '0 8px 32px rgba(0, 0, 0, 0.5)',
'glow': '0 0 20px rgba(220, 38, 38, 0.3)',
'glow-sun': '0 0 60px rgba(255, 200, 50, 0.4)',
},
},
},
plugins: [],
}