chefhai/tailwind.config.js
Tantikon Phasanphaengsi 23cf0f7997 create home page
2025-05-08 20:59:02 +07:00

16 lines
388 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: ["./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
primary: "#ffd60a",
secondary: "#f9be25",
accent: "#bb0718",
},
},
},
plugins: [],
}