summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index ab8e047..21d2af9 100644
--- a/src/index.js
+++ b/src/index.js
@@ -24,7 +24,7 @@ const objElement = document.querySelector("#throwable");
const queryParams = new URLSearchParams(window.location.search);
const image = queryParams.get("image");
if (image !== null) {
- objElement.style.backgroundColor = "white";
+ objElement.style.backgroundColor = "inherit";
objElement.style.backgroundImage = `url(${decodeURI(image)})`;
}