angular-hotel-manager/tailwind.config.js

19 lines
255 B
JavaScript
Raw Permalink Normal View History

2024-08-20 12:26:19 +00:00
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
2024-08-20 12:26:19 +00:00
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
colors: {
...colors,
}
},
2024-08-20 12:26:19 +00:00
},
plugins: [],
}