menu

ASANA

Color Palette

  • Sage Green (#5D7773): Calm, grounding, and harmonious — representing balance, mindfulness, and nature.

  • White (#FFFFFF): Clean, minimal, and pure — symbolizing clarity, peace, and simplicity.

This palette was selected to create a soft, welcoming, and modern brand identity that reflects the essence of yoga practice.

Logo Idea

The logo features a yoga position silhouette drawn in a fine white line, placed inside a solid sage green circle. This approach combines simplicity with strong symbolism:

  • The circle represents wholeness, unity, and the cycle of breath.

  • The yoga pose highlights the essence of the practice, instantly making the logo identifiable within the wellness space.

  • Using thin white lines ensures the design feels light, minimal, and calming — perfect for a yoga brand.

The result is a modern, versatile logo that works seamlessly across digital and physical applications, from studio signage and merchandise to social media icons.

const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(75, window.innerWidth/window.innerHeight, 0.1, 1000); const renderer = new THREE.WebGLRenderer({ alpha: true }); renderer.setSize(window.innerWidth, 500); document.getElementById("cube-container").appendChild(renderer.domElement); // Cube geometry const geometry = new THREE.BoxGeometry(2, 2, 2); // Materials (you can replace images) const materials = [ new THREE.MeshBasicMaterial({ color: 0x111111 }), new THREE.MeshBasicMaterial({ color: 0x222222 }), new THREE.MeshBasicMaterial({ color: 0x333333 }), new THREE.MeshBasicMaterial({ color: 0x444444 }), new THREE.MeshBasicMaterial({ color: 0x555555 }), new THREE.MeshBasicMaterial({ color: 0x666666 }) ]; const cube = new THREE.Mesh(geometry, materials); scene.add(cube); camera.position.z = 5; function animate() { requestAnimationFrame(animate); cube.rotation.x += 0.01; cube.rotation.y += 0.01; renderer.render(scene, camera); } animate();