modding-way/tailwind.config.js
2026-01-06 13:46:17 +03:30

16 lines
274 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
Dark_orange: "#f87f06",
Light_orange: "#fba105"
}
},
},
plugins: [],
}