Mobile app version of vmapp.org
Login or Join
Murphy569

: Why do I see 3 different values for 75% white? Why do I see 3 values for 75% of white? Same for 50% and many other values. Yes there is a difference between each other, #C0C0C0 is (192,

@Murphy569

Posted in: #Color #ColorSpaces #ColorTheory #Grayscale

Why do I see 3 values for 75% of white? Same for 50% and many other values.

Yes there is a difference between each other, #C0C0C0 is (192, 192, 192), #BEBEBE is (190, 190, 190), #BFBFBF is (191, 191, 191), but why is it shown like this?

december color codes

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy569

3 Comments

Sorted by latest first Latest Oldest Best

 

@Eichhorn212

None of those colors are exactly 75% gray, because that precise shade cannot be exactly represented using the 3×8-bit RGB palette. Specifically, your colors are:


"gray" = #BEBEBE = rgb(190, 190, 190) = 190 / 255 ≈ 74.5% gray
"gray75" = #BFBFBF = rgb(191, 191, 191) = 191 / 255 ≈ 74.9% gray
"silver" = #C0C0C0 = rgb(192, 192, 192) = 192 / 255 ≈ 75.3% gray


The middle one, "gray75", is technically closest to 75% gray, as the name indicates, but the others differ from it by only 1 / 255 ≈ 0.4%. In practice, while that difference may be barely detectable by the human eye, if the two colors are juxtaposed on the same display, it's completely negligible compared to variations in display calibration, not to mention the perceptual differences due to ambient lighting. So in practice, it doesn't really matter which one you use — if you just see a gray box on the screen, there's no way you can possibly tell which one of those shades it is.

(Also, it may be worth noting that, because all standard RGB color spaces and display devices are perceptually non-linear, and have a display gamma greater than one, none of those shades are actually anywhere close to being 75% as luminous as pure white. On a typical computer monitor with γ ≈ 2.2, those shades of gray are actually only about 0.752.2 ≈ 53% as bright as pure white. Converting them to CMYK for printing will, of course, produce something completely different again. Fortunately, the human eye is pretty adaptive, so in practice, even fairly large differences in overall gamma are not very noticeable, as long as they're consistently applied to the entire image.)

10% popularity Vote Up Vote Down


 

@Nimeshi706

The reason there are multiple RGB values for the same CMYK color has to do with the color gamut that can be produced by each process. It's not that the 25% black screen converts differently (well it does, but that's a different lesson) but more that 25% black is the closest approximate match that CMYK can produce to match that RGB color.

Here is a link to a video that explains it decently. It's not the greatest video, but it gets the point across.

Color Gamut Video

10% popularity Vote Up Vote Down


 

@Nimeshi706

When you search for colors on a brightness percentage basis (HSL) 100% = rgb(255, 255, 255) which means each 1% = ~2.55rgb leaving color values in between that are more accurately defined using rgb and/or hex color codes. The lost values are most likely a bi-product of HSL models in web/software applications that attempt to visualize the color values for user convenience.


HSL and HSV are the two most common cylindrical-coordinate representations of points in an RGB color model... [HSL] representations are used widely in computer graphics, and one or the other of them is often more convenient than RGB, but both are also criticized for not adequately separating color-making attributes, or for their lack of perceptual uniformity.



Basically, not all rgb values are represented percentage-wise in HSL/HSV models.


Check Out the Wiki

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme