22 lines
405 B
TypeScript
22 lines
405 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#6C63FF',
|
|
accent: '#00D4AA',
|
|
dark: {
|
|
900: '#0A0E17',
|
|
800: '#111827',
|
|
700: '#1F2937',
|
|
600: '#374151',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|