Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created December 6, 2023 08:03
Show Gist options
  • Save transcendr/736be300e2afc584d55246f8a673bf22 to your computer and use it in GitHub Desktop.
Save transcendr/736be300e2afc584d55246f8a673bf22 to your computer and use it in GitHub Desktop.
export function typeToColor(type: string) {
switch (type) {
case 'repos':
return 'SteelBlue';
case 'conduite':
return 'MediumAquamarine';
case 'travail':
return 'Red';
case 'coupure':
return 'SteelBlue';
case 'ac':
return 'Fuchsia';
case 'de':
return 'Grey';
case 'mad':
return 'Yellow';
case 'service':
return 'LightGray';
default:
return 'White';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment