Wi-Fi: Change Z-A GA background for readability (#11512)

This commit is contained in:
Lusamine 2025-10-17 14:07:01 -05:00 committed by GitHub
parent 558a799c81
commit 8a75295b1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -162,7 +162,7 @@ abstract class Giveaway extends Rooms.SimpleRoomGame {
const css: { [k: string]: string | { [k: string]: string } } = { class: "broadcast-blue" };
if (this.game === 'BDSP') css.style = { background: '#aa66a9', color: '#fff' };
if (this.game === 'SV') css.style = { background: '#CD5C5C', color: '#fff' };
if (this.game === 'Z-A') css.style = { background: '#9BC53B', color: '#fff' };
if (this.game === 'Z-A') css.style = { background: '#10a14f', color: '#fff' };
return css;
}