Files
shop/frontend/admin/tailwind.config.js
Marek Lenczewski e3e88cc58e wahnsinn vibe
2026-04-16 19:42:06 +02:00

17 lines
302 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{vue,ts,js}"],
theme: {
extend: {
colors: {
admin: {
500: "#1565c0",
600: "#134a92",
700: "#0d3778",
},
},
},
},
plugins: [],
};