import type { Config } from 'tailwindcss'; const config: Config = { content: ['./src/**/*.{ts,tsx}'], theme: { extend: { colors: { ink: '#0a0a0a', paper: '#fafafa', accent: '#ff6b35', }, }, }, plugins: [], }; export default config;