8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
const tailwindColors: Record<string, string> = {
|
|
"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
|
|
};
|