diff --git a/website/src/components/website/match/MapDisplay.vue b/website/src/components/website/match/MapDisplay.vue index e9378071..a7300d66 100644 --- a/website/src/components/website/match/MapDisplay.vue +++ b/website/src/components/website/match/MapDisplay.vue @@ -37,9 +37,13 @@ export default { return this.match.teams.find(t => t.id === cleanID(this.map.winner.id)); }, imageCSS() { + let mapTheme = { color: "#ffffff" }; + if (!this.map?.image && this.theme) { + mapTheme = themeBackground(this.theme); + } return { ...cssImage("backgroundImage", this.map, ["image"], 160), - ...(this.theme ? themeBackground(this.theme) : {}) + ...mapTheme }; }, complete() {