Rainbow using Hex vaValues

Random question: if I wanted to make a rainbow using hex color values, how would I go about it? Surely it's not as simple as just adding 1 to the hex value and then just displaying the corresponding value as a color and then repeating, is it?
10 Replies
Keswiik
Keswiik2w ago
For starters, elaborate on what you mean by "adding 1 to the hex value" Do you mean add 1 to a specific color channel in the hex code?
ThunDerd164
ThunDerd164OP2w ago
Like if the hex value of the color is 0xF367 would the next just be 0xF368?
Keswiik
Keswiik2w ago
That's not how color codes work
ThunDerd164
ThunDerd164OP2w ago
Oh. Not well versed in it. Just assumed that's how it works. Mind explaining?
Keswiik
Keswiik2w ago
hex color codes are typically in the format of #AARRGGBB and #RRGGBB you get two characters per color (or alpha) channel, because that gives you a range of 0-255 and 8-bit color depth is the norm but to give any better advice i'd need to know how you're displaying this rainbow and if it wasn't clear, A=alpha (opacity), R=red, G=green, B=blue
Angius
Angius2w ago
Best way would be to not use RGB Or to do calculations in not-RGB and then translate the colors OKLAB and OKLCH give you best results visually, HSL and HSV are more "correct"
canton7
canton72w ago
Yep exactly. Pick values for S and L, then whizz round H. Works well.
Angius
Angius2w ago
For reference, here's a rainbow comparison in HSL, LCH, and OKLCH, all of them just changing the hue value: https://codepen.io/Angius/full/VYwGxBr Other than that, max saturation and 50% brightness
canton7
canton72w ago
Huh, LCH and OKLCH don't have any yellow at all. I should look into them a bit more
Angius
Angius2w ago
It's possible that I fucked something up lol

Did you find this page helpful?