-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (44 loc) · 1.61 KB
/
tailwind.config.js
File metadata and controls
48 lines (44 loc) · 1.61 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
// Primary accent
accent: '#06b6d4',
'accent-secondary': '#8b5cf6',
// Status colors
success: '#22c55e',
warning: '#eab308',
error: '#ef4444',
// Surface colors - updated to support light/dark modes
surface: {
bg: 'rgb(var(--color-surface-bg) / <alpha-value>)',
card: 'rgb(var(--color-surface-card) / <alpha-value>)',
elevated: 'rgb(var(--color-surface-elevated) / <alpha-value>)',
hover: 'rgb(var(--color-surface-hover) / <alpha-value>)',
},
// Border
border: 'rgb(var(--color-border) / <alpha-value>)',
// Text
text: {
primary: 'rgb(var(--color-text-primary) / <alpha-value>)',
secondary: 'rgb(var(--color-text-secondary) / <alpha-value>)',
muted: 'rgb(var(--color-text-muted) / <alpha-value>)',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Consolas', 'monospace'],
},
backgroundImage: {
'accent-gradient': 'linear-gradient(135deg, #06b6d4, #8b5cf6)',
},
},
},
plugins: [],
}