1 پاسخ
ثبت پاسخ جدیدبرای تعریف متغیر در tailwind دو راه وجود داره
1.تعریف متغیر های css در فایل روت tailwind
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary-color: #fff;
--secondary-color: #000;
}
2.تعریف متغیر های tailwind در فایل tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
"primary-color": "var(--primary-color)",
"secondary-color": "var(--secondary-color)"
},
},
},
};
موفق باشی
یک سال پیش
0
ثبت پاسخ