You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB

module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
textColor: (theme) => ({
...theme("colors"),
// used in ProductDesign Component
discountPriceTitle: "#4ACA53",
productTitle: "#246E8A",
productContent: "#707070",
productStar: "#F7FF00",
productPrice: "#132F52",
productBorderBtn: "FFF3F3",
productTag: "#38A1B6",
borderColor: "#dbdbdb",
selectColor1: "#924EEB",
selectColor2: "#89ECFF",
selectColor3: "#FC5353",
selectColor4: "#FCF653",
// used in ButtonDesign Component
moreInfoButtonTextColor: "#06BACE",
cancleButtonTextColor: "#646464",
}),
backgroundColor: (theme) => ({
...theme("colors"),
// used in ProductDesign Component
productTagBg: "#E1FAFF",
likeBtnBg: "#FFF3F3",
discountPriceBg: "#F0FFF1",
counterBg: "#66B1EB",
incrementDecrementBg: "#2E7AB5",
// used in ButtonDesign Component
moreInfoButtonBg: "#038A99",
cancleButtonBg: "#DBDBDB",
}),
borderColor: (theme) => ({
...theme("colors"),
// used in ButtonDesign Component
moreInfoButtonBorderColor: "#06BACE",
}),
},
plugins: [],
};