Files
RecipesCam/tailwind.config.js
2026-07-17 09:33:24 +07:00

18 lines
358 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./App.{js,jsx,ts,tsx}", "./src/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
carbon: "#08080a",
titan: "#1f1f23",
amber: {
500: "#f59e0b",
}
}
},
},
plugins: [],
}