diff --git a/assets/html/index.html b/assets/html/index.html
index 1f3ca29..122b931 100644
--- a/assets/html/index.html
+++ b/assets/html/index.html
@@ -337,7 +337,13 @@
Faces
}
start() {
- this.userDiv.innerHTML = `User: ${this.user}`
+ let color = "#000000";
+
+ if (this.user == "unknown") {
+ color = Cell.colors.grey;
+ }
+
+ this.userDiv.innerHTML = `User: ${this.user}`
}
// stop() {