Handy/tailwind.config.js
2025-11-10 11:39:14 +08:00

16 lines
437 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
text: "var(--color-text)",
background: "var(--color-background)",
"logo-primary": "var(--color-logo-primary)",
"logo-stroke": "var(--color-logo-stroke)",
"text-stroke": "var(--color-text-stroke)",
},
},
},
plugins: [],
};