DEV Community

Discussion on: Awesome things for awesome people - July 2020

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️ • Edited

Use HSL && scoped CSS variables to prototype UI

Sounds like what I did here 👍

I'm probably taking it a bit too far though

<section style="--base-hue: 210deg; --saturation: 80%; --offset: calc(360deg / 12)">
   <div class="colors" style="--saturation: 68%; --hue: calc(var(--base-hue) + var(--offset));">
   </div>
</section>
Enter fullscreen mode Exit fullscreen mode
Collapse
 
jh3y profile image
Jhey Tompkins

Yeah, same magic! 👍😎

I often use it inline with HTML for creating random experiences with animations, etc.