Files
dmenu-admin/tailwind.config.js
T
hamid zarghami c69d4ea60b structure
2025-08-26 22:17:42 +03:30

17 lines
323 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#007bff",
secondary: "#6c757d",
}
},
},
plugins: [],
}