28 lines
624 B
JavaScript
Executable File
28 lines
624 B
JavaScript
Executable File
/** @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: [],
|
|
}
|