Files
cally/constants/colorMap.ts
2024-12-17 18:12:47 +01:00

19 lines
478 B
TypeScript

export const colorMap = {
pink: "#ea156c",
orange: "#ffb902",
green: "#72d82a",
teal: "#07b9c6",
purple: "#7204d5",
lightPink: "#ffc8dd",
lightOrange: "#ffe5a6",
lightGreen: "#c1eea1",
lightTeal: "#c4f0f3",
lightPurple: "#debffa",
};
export const getEventTextColor = (backgroundColor: string): string => {
const lightColors = ["#ffc8dd", "#ffe5a6", "#c1eea1", "#c4f0f3", "#debffa"];
return lightColors.includes(backgroundColor) ? "black" : "white";
};