We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d413fc3 commit 23cf954Copy full SHA for 23cf954
1 file changed
src/login/utils/realmColor.ts
@@ -22,10 +22,10 @@ export function getRealmColor(realmName: string): ChipColor {
22
const normalizedName = realmName.toLowerCase()
23
24
if (normalizedName === 'customer') {
25
- return 'neutral'
+ return 'primary'
26
}
27
if (normalizedName === 'team') {
28
- return 'primary'
+ return 'secondary'
29
30
if (normalizedName === 'master') {
31
return 'negative'
@@ -34,4 +34,4 @@ export function getRealmColor(realmName: string): ChipColor {
34
const hash = hashString(realmName)
35
const index = hash % chipColors.length
36
return chipColors[index]
37
-}
+}
0 commit comments