diff --git a/public/index.html b/public/index.html
index 7de3a2475c3713d693d8f08a6b3acb21efaa1534..672f8c2aa6565a4795e2f747dff0a6c57744e504 100644
--- a/public/index.html
+++ b/public/index.html
@@ -24,7 +24,7 @@ async function activateXR() {
   const scene = new THREE.Scene();
 
 // Color of the torus geometry.
-const material = new THREE.MeshLambertMaterial({ color: 0xBF0DEF });
+const material = new THREE.MeshBasicMaterial({color: 0xff0000});
 
 // Create the torus and add it to the demo scene.
 const torus = new THREE.Mesh( new THREE.TorusKnotGeometry(0.3, 0.2, 64, 8, 2, 3), material);