Files
gestion_projet/tailwind.config.js
T
2026-06-30 17:09:52 +02:00

18 lines
353 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bg: '#0f1117',
panel: '#171a23',
panel2: '#1e222e',
border: '#2a2f3d',
accent: '#7c5cff',
accent2: '#00d2b8'
}
}
},
plugins: []
}