Files
CPLv4.0/utils/colors.ts
Ismail Ali ea0e21892a TDRChart
2025-03-16 12:01:42 +01:00

8 lines
278 B
TypeScript

const tailwindColors = {
"littwin-blue": "#00AEEF", // Hier alle Tailwind-Farben manuell eintragen
};
export const getColor = (colorName: string) => {
return tailwindColors[colorName] || colorName; // Falls die Farbe nicht existiert, wird der Name direkt zurückgegeben
};