Taobin-Recipe-Manager/client/tailwind.config.js
2023-09-20 12:18:27 +07:00

16 lines
280 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts}"],
theme: {
extend: {
"backgroundColor": {
"primary": "#EAE6E1",
},
"textColor": {
"primary": "#513C2F",
}
},
},
plugins: [],
}