diff --git a/public/index.html b/public/index.html
index 6199511907d496baf33ff531e4324258cefa0bd0..7de3a2475c3713d693d8f08a6b3acb21efaa1534 100644
--- a/public/index.html
+++ b/public/index.html
@@ -24,10 +24,10 @@ async function activateXR() {
   const scene = new THREE.Scene();
 
 // Color of the torus geometry.
-const material = new THREE.MeshLambertMaterial({ color: 0xce1256 });
+const material = new THREE.MeshLambertMaterial({ color: 0xBF0DEF });
 
 // Create the torus and add it to the demo scene.
-const torus = new THREE.Mesh( new THREE.TorusKnotGeometry(0.3, 0.2, 80, 8), material);
+const torus = new THREE.Mesh( new THREE.TorusKnotGeometry(0.3, 0.2, 64, 8, 2, 3), material);
 //position the next geometry (sphere)
 torus.position.set(0, 0, -1);
 // Add the mesh to the scene