17 lines
285 B
TypeScript
17 lines
285 B
TypeScript
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;
|