25 lines
541 B
JavaScript
25 lines
541 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
'./index.html',
|
||
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
'bg-primary': '#0f172a',
|
||
|
|
'bg-secondary': '#1e293b',
|
||
|
|
'bg-tertiary': '#334155',
|
||
|
|
'accent': '#3b82f6',
|
||
|
|
'success': '#10b981',
|
||
|
|
'warning': '#f59e0b',
|
||
|
|
'danger': '#ef4444',
|
||
|
|
'text-primary': '#f1f5f9',
|
||
|
|
'text-secondary': '#94a3b8',
|
||
|
|
'text-muted': '#64748b',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|