mkgg/tailwind.config.js

17 lines
257 B
JavaScript
Raw Normal View History

2024-12-10 17:52:14 +01:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
2024-12-18 06:41:07 +01:00
extend: {
colors: {
primaryDark: "#2F2F3E",
primaryLight: "#B5B5EF",
}
},
2024-12-10 17:52:14 +01:00
},
plugins: [],
}