Skip to content

Commit 23cf954

Browse files
committed
update realm colors
1 parent d413fc3 commit 23cf954

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/login/utils/realmColor.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ export function getRealmColor(realmName: string): ChipColor {
2222
const normalizedName = realmName.toLowerCase()
2323

2424
if (normalizedName === 'customer') {
25-
return 'neutral'
25+
return 'primary'
2626
}
2727
if (normalizedName === 'team') {
28-
return 'primary'
28+
return 'secondary'
2929
}
3030
if (normalizedName === 'master') {
3131
return 'negative'
@@ -34,4 +34,4 @@ export function getRealmColor(realmName: string): ChipColor {
3434
const hash = hashString(realmName)
3535
const index = hash % chipColors.length
3636
return chipColors[index]
37-
}
37+
}

0 commit comments

Comments
 (0)