25 lines
No EOL
512 B
TypeScript
25 lines
No EOL
512 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#6366f1',
|
|
dark: '#4f46e5',
|
|
},
|
|
secondary: '#8b5cf6',
|
|
accent: '#22d3ee',
|
|
surface: '#1e293b',
|
|
background: '#0f172a',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
export default config |