Files
LANMap/frontend/tailwind.config.js
T
2025-12-06 12:28:55 +01:00

27 lines
544 B
JavaScript

/** @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',
yellow: '#E6DB74',
orange: '#FD971F',
},
},
},
},
plugins: [],
}