/* * Bluelib Fun Experiments * by */ @property --bhsl-current-hue { syntax: ''; initial-value: 0deg; inherits: true; } @keyframes rainbow { 0% { --bhsl-current-hue: 0deg; } 100% { --bhsl-current-hue: 360deg; } } :where(.rainbow) { animation: 2s linear infinite rainbow; }