mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-18 21:44:09 +01:00
16 lines
388 B
JavaScript
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: [],
|
|
} |