![Author: atom@argyleink A series of images of an avatar doing a bunch of skateboard tricks.](https://res.cloudinary.com/dnpmdb8r8/image/upload/w_250,f_auto,c_limit,q_auto,w_auto/v1673498930/argyleink/gui-skull.png)
notecss
CSS color tip!
Need a rainbow gradient? Let <hue-interpolation>
do the work.
.vibrant-rainbow {
background: linear-gradient(
to right
in hsl /* vibrant gradient HSL colorspace */
longer hue, /* hue-interpolation set to longer */
red, red /* now red to red goes all the way around */
);
}
![All colors of the rainbow in a gradient from left to right.](https://res.cloudinary.com/dnpmdb8r8/image/upload/f_auto,c_limit,q_auto,w_auto/argyleink/hsl-rainbow.jpg)