aqp-combi/tailwind.config.js

16 lines
274 B
JavaScript
Raw Normal View History

2024-09-03 17:03:56 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
2024-09-03 21:07:27 +00:00
extend: {
colors: {
"c-primary": "var(--main)",
},
},
2024-09-03 17:03:56 +00:00
},
plugins: [],
};