Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created December 6, 2023 08:11
Show Gist options
  • Select an option

  • Save transcendr/cd83a42b5f11d3e12f83138d1e37558f to your computer and use it in GitHub Desktop.

Select an option

Save transcendr/cd83a42b5f11d3e12f83138d1e37558f 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