const tailwindColors: Record = { "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 };