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