Files
gestion_projet/tailwind.config.js
T
Mathew b054e36df0 Panel admin, planning, tags, suivi du temps, thèmes clair/sombre
- Admin: création/suppression de comptes + rôles via Edge Function sécurisée
- Config Supabase intégrée au build (.env), écran Setup supprimé
- Page Planning (vue mois/semaine)
- Tags "jobs" sur les tâches + filtres (membre / tag)
- Suivi du temps par tâche, total par jalon
- Toasts + confirmations in-app (fini alert/confirm natifs)
- Thème Notion clair + mode sombre (accent monochrome, bascule persistée)
- .env suivi par git (public uniquement) pour synchro multi-machines

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01 09:51:40 +02:00

25 lines
905 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
// Tokens pilotés par variables CSS (voir :root et .dark dans index.css).
bg: 'rgb(var(--c-bg) / <alpha-value>)',
panel: 'rgb(var(--c-panel) / <alpha-value>)',
panel2: 'rgb(var(--c-panel2) / <alpha-value>)',
sidebar: 'rgb(var(--c-sidebar) / <alpha-value>)',
border: 'rgb(var(--c-border) / <alpha-value>)',
ink: 'rgb(var(--c-ink) / <alpha-value>)',
muted: 'rgb(var(--c-muted) / <alpha-value>)',
subtle: 'rgb(var(--c-subtle) / <alpha-value>)',
accent: 'rgb(var(--c-accent) / <alpha-value>)',
accentfg: 'rgb(var(--c-accentfg) / <alpha-value>)',
accent2: 'rgb(var(--c-accent2) / <alpha-value>)'
}
}
},
plugins: []
}