24 lines
514 B
JavaScript
24 lines
514 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
dd0c: {
|
||
|
|
bg: '#0a0a0f',
|
||
|
|
surface: '#12121a',
|
||
|
|
border: '#1e1e2e',
|
||
|
|
primary: '#6366f1',
|
||
|
|
accent: '#06b6d4',
|
||
|
|
success: '#22c55e',
|
||
|
|
warning: '#f59e0b',
|
||
|
|
danger: '#ef4444',
|
||
|
|
text: '#e2e8f0',
|
||
|
|
muted: '#64748b',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|