This commit is contained in:
Kalle
2024-03-16 11:17:53 +02:00
parent 3710822850
commit 9d0bea1cbb
2 changed files with 8 additions and 0 deletions

View File

@@ -80,6 +80,10 @@ export function HACKY_resolvePicture(event: { name: string }) {
return tournamentLogoUrl("sos");
}
if (event.name.includes("From The Ink Up")) {
return tournamentLogoUrl("ftiu");
}
return tournamentLogoUrl("default");
}
@@ -114,6 +118,10 @@ export function HACKY_resolveThemeColors(event: { name: string }) {
return { bg: "#d7f8ea", text: BLACK };
}
if (event.name.includes("From The Ink Up")) {
return { bg: "#ffdfc6", text: BLACK };
}
return { bg: "#3430ad", text: WHITE };
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB