-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
89 lines (87 loc) · 2.69 KB
/
tailwind.config.ts
File metadata and controls
89 lines (87 loc) · 2.69 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Design System Colors
bg: 'var(--color-bg)',
surface: 'var(--color-surface)',
'surface-elevated': 'var(--color-surface-elevated)',
text: 'var(--color-text)',
'text-secondary': 'var(--color-text-secondary)',
muted: 'var(--color-muted)',
accent: 'var(--color-accent)',
'accent-hover': 'var(--color-accent-hover)',
'accent-muted': 'var(--color-accent-muted)',
border: 'var(--color-border)',
'border-subtle': 'var(--color-border-subtle)',
success: 'var(--color-success)',
warning: 'var(--color-warning)',
danger: 'var(--color-danger)',
// Cyber/Neon colors for apps
'cyber-dark': '#0a0a0f',
'cyber-darker': '#050508',
'cyber-light': '#12121a',
'neon-cyan': '#00f0ff',
'neon-blue': '#4d7cff',
'neon-green': '#00ff88',
'neon-purple': '#b347ff',
},
fontFamily: {
display: 'var(--font-display)',
body: 'var(--font-body)',
mono: 'var(--font-mono)',
},
fontSize: {
'display-xl': ['var(--text-5xl)', { lineHeight: 'var(--leading-5xl)' }],
'display-lg': ['var(--text-4xl)', { lineHeight: 'var(--leading-4xl)' }],
'display': ['var(--text-3xl)', { lineHeight: 'var(--leading-3xl)' }],
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
},
borderRadius: {
'sm': 'var(--radius-sm)',
'md': 'var(--radius-md)',
'lg': 'var(--radius-lg)',
},
boxShadow: {
'sm': 'var(--shadow-sm)',
'md': 'var(--shadow-md)',
'lg': 'var(--shadow-lg)',
'gold': 'var(--shadow-gold)',
},
transitionDuration: {
'fast': 'var(--duration-fast)',
'base': 'var(--duration-base)',
'slow': 'var(--duration-slow)',
},
transitionTimingFunction: {
'out': 'var(--ease-out)',
'spring': 'var(--ease-spring)',
},
animation: {
'fade-up': 'fadeUp var(--duration-slow) var(--ease-out) forwards',
'fade-in': 'fadeIn var(--duration-base) var(--ease-out) forwards',
},
keyframes: {
fadeUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
plugins: [],
};
export default config;