mkgg/tailwind.config.js
amy 3f96e51571
All checks were successful
Build / Build (push) Successful in 1m21s
Build / Deploy (push) Successful in 13s
minor graphical changes
2024-12-18 09:11:07 +03:30

16 lines
257 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primaryDark: "#2F2F3E",
primaryLight: "#B5B5EF",
}
},
},
plugins: [],
}