mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
12 lines
423 B
TypeScript
12 lines
423 B
TypeScript
export const rolesToColor = (roles: string[]) => roles.includes('registrant')
|
|
? 'green'
|
|
: roles.includes('registrar')
|
|
? 'purple'
|
|
: roles.includes('administrative')
|
|
? 'blue'
|
|
: roles.includes('technical')
|
|
? 'orange'
|
|
: roles.includes('sponsor')
|
|
? 'magenta'
|
|
: roles.includes('billing') ? 'cyan' : 'default'
|