This commit is contained in:
2026-02-07 16:57:37 +01:00
parent 8383104454
commit dff1b03e42
129 changed files with 19769 additions and 0 deletions

27
frontend/tailwind.config.js Executable file
View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Palette Monokai (guidelines-css.md)
monokai: {
bg: '#272822',
text: '#F8F8F2',
comment: '#75715E',
green: '#A6E22E',
pink: '#F92672',
cyan: '#66D9EF',
purple: '#AE81FF',
'purple-dark': '#5E4B8C', // Violet foncé pour détections anciennes
yellow: '#E6DB74',
orange: '#FD971F',
},
},
},
},
plugins: [],
}