26 lines
632 B
TypeScript
26 lines
632 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'term-bg': '#0a0a0a',
|
|
'term-green': '#00ff41',
|
|
'term-dim': '#008f11',
|
|
'term-dark': '#0d0208',
|
|
},
|
|
fontFamily: {
|
|
mono: ['"Courier New"', 'Courier', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|