@clubmed/trident-ui
Version:
Shared ClubMed React UI components
25 lines (24 loc) • 417 B
JavaScript
const t = {
YELLOW: {
bgColor: "bg-saffron",
textColor: "text-black",
textColorActive: "text-black"
},
BLACK: {
bgColor: "bg-black",
textColor: "text-black",
textColorActive: "text-white"
}
}, o = (e) => {
switch (e) {
case "black":
return t.BLACK;
case "yellow":
default:
return t.YELLOW;
}
};
export {
o as getTheme
};
//# sourceMappingURL=theme.js.map