-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 867 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 867 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,html}'],
theme: {
extend: {
colors: {
canvas: { light: '#FAFAF8', dark: '#1A1A1E', grid: '#E5E3DD' },
card: { bg: '#FFFFFF', border: '#E5E3DD', header: '#F7F6F3' },
term: { bg: '#1A1A2E', text: '#C8C8D4' },
theme: {
canvas: 'var(--bg-canvas)',
card: 'var(--bg-card)',
header: 'var(--bg-header)',
hover: 'var(--bg-hover)',
border: 'var(--border)',
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
},
},
fontFamily: {
mono: ['"JetBrains Mono"', '"SF Mono"', 'monospace'],
sans: ['"Inter"', '-apple-system', 'sans-serif'],
},
},
},
plugins: [],
}