diff --git a/public/1-Cube.html b/public/1-Cube.html
index 5e7a7b22471392d5ddeaf1df9cf7f9d52a75130e..f140ff809a42b0b8ebe89b6a7776f725f078d1c9 100644
--- a/public/1-Cube.html
+++ b/public/1-Cube.html
@@ -25,12 +25,12 @@ async function activateXR() {
 
 // The cube will have a different color on each side.
 const materials = [
-  new THREE.MeshBasicMaterial({color: 0xa40808}),
-  new THREE.MeshBasicMaterial({color: 0xb6d7a8}),
-  new THREE.MeshBasicMaterial({color: 0xa40808}),
-  new THREE.MeshBasicMaterial({color: 0xffe599}),
-  new THREE.MeshBasicMaterial({color: 0xd5a6bd}),
-  new THREE.MeshBasicMaterial({color: 0xcfe2f3})
+  new THREE.MeshBasicMaterial({color: E9FF00}),
+  new THREE.MeshBasicMaterial({color: 1BFF00}),
+  new THREE.MeshBasicMaterial({color: 00FFF2}),
+  new THREE.MeshBasicMaterial({color: 0046FF}),
+  new THREE.MeshBasicMaterial({color: DA00FF}),
+  new THREE.MeshBasicMaterial({color: FF0013})
 
 ];