Splash Is a Colour Format
21–30 of 122 posts
Re: Splash Is a Colour Format
#22Re: Splash Is a Colour Format
#23Earlier quoted context omitted.
Or HCL? Or LAB? Any of these are more intuitive than RGB.
What is hue zero? That’s green right? Because green is such a common color? Or maybe it’s blue.
Re: Splash Is a Colour Format
#24https://en.wikipedia.org/wiki/Web_colors#Web-safe_colors Macromedia Flash taught me this in the early 2000s...
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/V...
Re: Splash Is a Colour Format
#25Earlier quoted context omitted.
The point is that quantizing the range makes it easier for humans to choose colors. But there's already the #ABC hex format, which while less intuitive to non-techies has the huge advantage of being well-established.
But it doesn't make it easier for humans to choose colors. For a specific list of detent colors, it reduces the amount you have to memorize relative to full RGB. But to actually reason about colors, you want a non-arbitrary scale; HSV (for instance) gives you hue direction and then you can slide saturation and brightness around.
Maybe it’s just because I’m old and wrote CSS way before it got HSL or other fancy color functions, but personally, RGB colors are really deeply entrenched in my brain.
Re: Splash Is a Colour Format
#26It would be neat if you could express colours as a mix of arbitrary base colours, kind of like you’re mixing it on a paint palette. (ROYGBIVWK maybe? K being Key/blacK)
r2b1 gets you a deep reddish purple, but if you want it to be lighter you just keep adding white, r2b1w1, r2b1w2 etc. You can just focus on chroma, and mix in white/black to futz with the saturation/lightness. I feel like that’s a bit more like the way people talk about colours. (Pale yellowish-green = y1g2w2, dark blueish-grey = b1w2k4)
The way paint colours blend gets a bit complex compared to mathematically perfect RGB light sources, and there’s obviously MANY ways to represent the exact same colour, so not a silver bullet by any means.
Re: Splash Is a Colour Format
#27Whenever I needed a color for something digital (website, ...) I would use the Pantone color picker in Photoshop. It had multiple lists of colors (some more vivid, some muted, some thematic - only reds) and I would browse the color I wanted to pick a suitable shade. I didn't need the Pantone aspect specifically (real world printing), these were strictly digital uses, but I found browsing shade lists much better than…
Re: Splash Is a Colour Format
#28Isn't this just RGB, with 246 of the 256 values removed from each channel?
Re: Splash Is a Colour Format
#29Earlier quoted context omitted.
But it doesn't make it easier for humans to choose colors. For a specific list of detent colors, it reduces the amount you have to memorize relative to full RGB. But to actually reason about colors, you want a non-arbitrary scale; HSV (for instance) gives you hue direction and then you can slide saturation and brightness around.
I don’t know, but I use #ABC a lot , it’s much more convenient than #ABCDEF, never mind [0, 256) or [0, 1]. There are of course more intuitive coordinate schemes and color models, but I find RGB easy enough when you’re not actually doing serious graphic design. This is not about having a GUI color picker either, this is about hand-typing colors. Maybe it’s just because I’m old and wrote CSS way before it got HSL or o…
Re: Splash Is a Colour Format
#30As somebody who works in the coatings industry and is aware of the extremely complex field of colorimetry this horrifies me.