project-nomad/admin/tailwind.config.ts
2025-06-29 15:51:08 -07:00

14 lines
254 B
TypeScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./index.html"],
theme: {
extend: {
colors: {
desert: "#EADAB9",
"desert-green-light": "#BABAAA",
},
},
},
};