Add tournament logos
@@ -138,6 +138,26 @@ export function HACKY_resolvePicture(event: { name: string }) {
|
||||
return tournamentLogoUrl("mr");
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("barracuda co")) {
|
||||
return tournamentLogoUrl("bc");
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("crimson ink")) {
|
||||
return tournamentLogoUrl("ci");
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("mesozoic mayhem")) {
|
||||
return tournamentLogoUrl("me");
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("rain or shine")) {
|
||||
return tournamentLogoUrl("ros");
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("squid junction")) {
|
||||
return tournamentLogoUrl("sj");
|
||||
}
|
||||
|
||||
return tournamentLogoUrl("default");
|
||||
}
|
||||
|
||||
@@ -230,6 +250,26 @@ export function HACKY_resolveThemeColors(event: { name: string }) {
|
||||
return { bg: "#000", text: WHITE };
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("barracuda co")) {
|
||||
return { bg: "#47b6fe", text: BLACK };
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("crimson ink")) {
|
||||
return { bg: "#000000", text: WHITE };
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("mesozoic mayhem")) {
|
||||
return { bg: "#ccd5da", text: BLACK };
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("rain or shine")) {
|
||||
return { bg: "#201c3b", text: WHITE };
|
||||
}
|
||||
|
||||
if (normalizedEventName.includes("squid junction")) {
|
||||
return { bg: "#fed09f", text: BLACK };
|
||||
}
|
||||
|
||||
return { bg: "#3430ad", text: WHITE };
|
||||
}
|
||||
|
||||
|
||||
BIN
public/static-assets/img/tournament-logos/bc.avif
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
public/static-assets/img/tournament-logos/bc.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/static-assets/img/tournament-logos/ci.avif
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/static-assets/img/tournament-logos/ci.png
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
public/static-assets/img/tournament-logos/me.avif
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
public/static-assets/img/tournament-logos/me.png
Normal file
|
After Width: | Height: | Size: 109 KiB |
BIN
public/static-assets/img/tournament-logos/ros.avif
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/static-assets/img/tournament-logos/ros.png
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
public/static-assets/img/tournament-logos/sj.avif
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
public/static-assets/img/tournament-logos/sj.png
Normal file
|
After Width: | Height: | Size: 51 KiB |