chat-flow/tailwind.config.js

18 lines
372 B
JavaScript
Raw Normal View History

2025-07-29 08:45:22 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
// generate by https://huemint.com/website-magazine/
white: "#ffffff",
// Pohutukawa
black: "#16245d",
light: "#F8F4EA",
blue: "#0A5CD6",
},
},
},
plugins: [],
};