Orb noun tech
a circular graphical user interface element with an animated spherical texture
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/webfuse-com/voice-orb@main/voice-orb.js"></script>
</head>
<body>
<voice-orb id="orb" size="500"></voice-orb>
</body>
</html>const orb = document.getElementById("orb");
orb
.update({
colors: [
[0, 200, 255],
[0, 100, 255],
[0, 255, 180]
],
transitionTime: 2000,
morphSpeed: 0.5,
randomness: 0.75,
rotationSpeed: 0.8
});