-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
82 lines (81 loc) · 2.53 KB
/
tailwind.config.ts
File metadata and controls
82 lines (81 loc) · 2.53 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
import type { Config } from 'tailwindcss'
export default {
content: ['./src/renderer/index.html', './src/renderer/src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
// Base colors - Using CSS variables for theme support
ink: {
950: 'var(--bg-primary)',
900: 'var(--bg-primary)',
850: 'var(--bg-secondary)',
800: 'var(--bg-tertiary)',
700: 'var(--bg-elevated)',
600: 'var(--bg-hover)',
500: 'var(--border-default)',
400: 'var(--border-default)',
300: 'var(--text-muted)',
},
// Accent colors - Using CSS variables
amber: {
DEFAULT: 'var(--accent-primary)',
light: 'var(--accent-secondary)',
dark: 'var(--accent-muted)',
muted: 'var(--accent-glow)',
},
// Text colors - Using CSS variables
text: {
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
accent: 'var(--text-accent)',
},
// Status colors - These can stay static as they're semantic
status: {
active: '#22c55e',
'on-hold': '#f59e0b',
completed: '#3b82f6',
dropped: '#6b7280',
}
},
fontFamily: {
sans: ['DM Sans', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
serif: ['Playfair Display', 'Georgia', 'serif'],
mono: [
'JetBrains Mono',
'ui-monospace',
'SFMono-Regular',
'SF Mono',
'Menlo',
'Consolas',
'Liberation Mono',
'monospace'
]
},
boxShadow: {
'glow': '0 0 20px rgba(245, 158, 11, 0.15)',
'glow-lg': '0 0 30px rgba(245, 158, 11, 0.25)',
},
animation: {
'fade-in': 'fadeIn 0.2s ease-out',
'slide-in': 'slideIn 0.2s ease-out',
'pulse-glow': 'pulse-glow 2s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(-4px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideIn: {
'0%': { opacity: '0', transform: 'translateX(-8px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
'pulse-glow': {
'0%, 100%': { boxShadow: '0 0 0 0 rgba(245, 158, 11, 0.15)' },
'50%': { boxShadow: '0 0 20px 4px rgba(245, 158, 11, 0.15)' },
},
},
}
},
plugins: []
} satisfies Config