30 lines
812 B
TypeScript
30 lines
812 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: 'var(--color-bg)',
|
|
surface: 'var(--color-surface)',
|
|
'surface-2': 'var(--color-surface-2)',
|
|
line: 'var(--color-line)',
|
|
text: 'var(--color-text)',
|
|
muted: 'var(--color-muted)',
|
|
accent: 'var(--color-accent)',
|
|
'accent-soft': 'var(--color-accent-soft)',
|
|
'accent-line': 'var(--color-accent-line)',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Instrument Sans', 'system-ui', 'sans-serif'],
|
|
display: ['Sora', 'sans-serif'],
|
|
mono: ['JetBrains Mono', 'monospace'],
|
|
},
|
|
borderRadius: {
|
|
DEFAULT: '14px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|