-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
88 lines (88 loc) · 2.55 KB
/
tailwind.config.js
File metadata and controls
88 lines (88 loc) · 2.55 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
// New Linear-style dark palette
background: {
DEFAULT: '#0a0a0a',
secondary: '#111111',
tertiary: '#1a1a1a',
},
foreground: {
DEFAULT: '#ffffff',
secondary: '#9ca3af',
muted: '#6b7280',
},
// Accent colors for section labels
accent: {
blue: '#3B82F6',
green: '#10B981',
yellow: '#F59E0B',
purple: '#8B5CF6',
},
// Keep existing primary for backwards compatibility
primary: {
DEFAULT: '#3B82F6',
50: '#EBF2FE',
100: '#D7E6FD',
200: '#AFCDFB',
300: '#87B4F9',
400: '#5F9BF7',
500: '#3B82F6',
600: '#0B61EE',
700: '#084BB8',
800: '#063583',
900: '#041F4D',
},
success: '#10B981',
warning: '#F59E0B',
danger: '#EF4444',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out',
'fade-in-up': 'fadeInUp 0.6s ease-out',
'fade-in-down': 'fadeInDown 0.6s ease-out',
'float': 'float 6s ease-in-out infinite',
'float-slow': 'float 8s ease-in-out infinite',
'pulse-slow': 'pulse 3s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeInDown: {
'0%': { opacity: '0', transform: 'translateY(-20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(59, 130, 246, 0.1)' },
'100%': { boxShadow: '0 0 40px rgba(59, 130, 246, 0.2)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'hero-gradient': 'radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15), transparent)',
},
},
},
plugins: [],
}