Why Display Yellow and Print Yellow Are Made Differently — The Divided History of RGB, CMYK, and Color Standards

On a screen, you make yellow by adding red light and green light together. On a printed page, you make the same yellow by using magenta and cyan inks to absorb certain wavelengths of light. One method adds light; the other subtracts it. Yet both arrive at the same color we call “yellow.” Why did humanity never settle on a single way of representing color, and instead build separate rulebooks for two different worlds — light and ink? The answer starts with a simple physical fact: on a screen, color exists as light; on a printed page, it exists as ink.

Adding Light or Subtracting Ink

Screens and paper make color in fundamentally different ways. A screen generates its own light. Turn off all the red, green, and blue light and you get black; turn all three up to maximum and you get white. This method, where color gets brighter as more light is added, is called additive mixing.[1]

Paper, by contrast, produces no light of its own. Light from the sun or a lamp strikes the page, and only the portion that bounces back reaches our eyes as color. Ink doesn’t create light — it absorbs specific wavelengths and removes them. Yellow ink on a printed page, for instance, absorbs blue light and reflects only red and green wavelengths. The more layers of ink you stack, the more light gets absorbed, and the darker the result becomes; in theory, mixing every ink together approaches black. This method is called subtractive mixing.[1]

This divide isn’t a technical accident. Because a screen is a light source and paper is a reflector — two physically different media — the underlying logic of color had no choice but to split in opposite directions. Every color standard that followed, whether RGB or CMYK, is ultimately a set of conventions built on top of this basic physical fact.

Comparison of additive and subtractive color mixing
Additive mixing (RGB): the more light you add, the closer you get to white. Source: Wikimedia Commons (CC BY-SA 3.0)

The Lineage of Light: From Trichromatic Theory to the Colors on Your Screen

The idea of representing color through light started in science, well before it reached printing. In 1801, British physicist Thomas Young proposed that the human eye doesn’t detect each individual color directly, but instead combines signals from three types of receptors, each responsive to a different wavelength.[2] About fifty years later, German physicist Hermann von Helmholtz refined this hypothesis into a full theory: the retina contains three kinds of cone cells, each tuned to short (blue), medium (green), or long (red) wavelengths. This became known as the Young-Helmholtz trichromatic theory.[2] Later, James Clerk Maxwell demonstrated the idea experimentally between 1854 and 1855, showing through actual color-mixing experiments that nearly every color visible to the human eye could be produced by combining red, green, and blue light.[2]

This trichromatic theory didn’t stay confined to biology. It became the foundation for every digital screen that followed, each one reproducing millions of colors using nothing more than three light-emitting elements — red, green, and blue, or RGB. If the human eye truly relies on only three types of receptors, then a screen only needs to precisely control three colors of light to reproduce nearly everything a person can perceive.

This principle became a hardened industry standard with the arrival of color television. In the United States, several competing approaches vied to deliver color broadcasts while remaining compatible with existing black-and-white sets. In 1953, the method developed by the National Television System Committee (NTSC) won approval from the Federal Communications Commission (FCC) and became the standard.[3] Its defining feature was backward compatibility — old black-and-white sets could still display a picture — but that compromise came at the cost of extremely finicky signal processing, giving rise to an engineers’ inside joke that “NTSC” really stood for “Never Twice the Same Color.”[3] From that standard onward, every display technology that followed — color cathode-ray tubes (CRTs), and later liquid-crystal displays (LCDs) — has operated on the shared language of RGB.

Hex Codes and the Era of 216 “Safe” Colors

As computer graphics matured, engineers needed a precise way to record RGB values as numbers. The answer was hexadecimal notation, a system computers already used for things like memory addresses. Each of the red, green, and blue channels came to be expressed as a value from 00 to FF — that is, 0 to 255 — strung together in the form #RRGGBB. #FF0000, for example, sets red to maximum and green and blue to zero, producing a pure red. With three pairs of two hex digits each, this system can express 256 × 256 × 256, or roughly 16.78 million colors, making it a compact and precise standard notation for digital color.

Curiously, no single person can be credited with inventing the #RRGGBB notation. Writing RGB values in hexadecimal was already a common practice in computing at the time. The specific syntax — a leading # sign followed by six hex digits — came from the color specification format of the X Window System, developed at MIT in the mid-1980s. Because the earliest web browsers, Mosaic and Netscape, began life as X Window System applications, they simply inherited that color syntax. The notation was later formally adopted in the first specification of CSS, the web’s styling standard, in 1996.[4]

But well into the mid-1990s, not every computer screen could actually display all 16.78 million of those colors. Most entry-level computers of the era used graphics cards capable of showing only 256 colors at once. Worse, that palette of 256 colors wasn’t even the same between Windows and Macintosh. Of those 256 colors, only 216 could be displayed identically and accurately on both operating systems.[5] To avoid colors shifting or breaking depending on which computer a visitor used, web designers adopted the practice of sticking to those 216 shared colors — what became known as “web-safe colors.” This palette was built by restricting each RGB channel to just six values — 0, 51, 102, 153, 204, and 255 — yielding a 6×6×6 combination of 216 colors, and it was popularized by Lynda Weinman’s 1996 book Designing Web Graphics.[5]

Web-safe colors were never an aesthetic choice — they were a workaround for a hardware limitation. Once most monitors could display more than 16 million colors in the 2000s, the practice faded quickly. Virtually no one worries about the 216-color constraint today, but the episode is a reminder that color standards aren’t pure science; they keep getting rewritten by the hardware limits of their era.

The Lineage of Print: Painting the World with Four Drops of Ink

The history of printing has always been a struggle with pigment, not light. Attempts to reproduce images by layering multiple colors of ink date back to the early eighteenth century. Jacob Christoph Le Blon, born in Frankfurt, first attempted three-plate color printing in 1710, and in 1719 received a royal patent for the method from King George I of England.[6] His original palette was red, blue, and yellow, but it later evolved into cyan, magenta, and yellow (CMY), which became the foundation of the modern printing industry.

In theory, cyan, magenta, and yellow ink alone should be able to produce black through subtractive mixing. But real inks are chemically imperfect, so layering all three produces a muddy dark brown rather than true black. On top of that, printing fine text or thin lines required aligning three separate colors of ink with near-perfect precision, which was difficult to achieve. So the printing industry added a fourth ink: black. This is the origin of today’s CMYK — cyan, magenta, yellow, and key (a printing term generally referring to black ink).[7] Having a dedicated black ink produced sharper text and reduced how much of the three color inks needed to be used, cutting printing costs. Four-color printing first appeared in newspaper color illustrations and comics in the 1890s, and is generally credited to Thomas A. Lenci, who systematized the process at the Eagle Printing Ink Company in the United States in 1906.[7]

Unlike RGB, which grew out of research into human vision, CMYK emerged from an industrial need to work around the physical limitations of ink as a material. If RGB traveled a path “from theory down to industry,” CMYK traveled the opposite path — “from trial and error in the field, up to theory.”

Principle of subtractive color mixing
Subtractive mixing (CMY): the more layers of ink you stack, the more light gets absorbed, and the darker the result. Source: Wikimedia Commons (Public Domain)

Pantone: A Color-Selling Company Reshapes How Printers Communicate

CMYK alone didn’t solve every problem. Even with identical CMYK values, the color that actually came off the press could vary depending on the printing press, the paper stock, and the ink manufacturer. A designer’s intended blue and the blue that actually printed could end up subtly — but noticeably — different.

The person who solved this was Lawrence Herbert, who joined Pantone in 1956 as a chemist in charge of color formulation. After acquiring the company in 1962, he devised the Pantone Matching System (PMS) in 1963.[8] The idea was simple: mix ten standardized base inks in fixed ratios to produce more than a thousand color swatches, compile them into a book, and assign each one a unique number.[8] Once a designer specified “PMS 285,” any print shop anywhere in the world could follow the same formula and reproduce the exact same blue.

Pantone’s real innovation wasn’t the color swatches themselves — it was the business model behind them. Herbert wrote to twenty-one major ink manufacturers introducing the Pantone Matching System and offering them licenses to produce the ten standard inks in exchange for royalties. Within two weeks, every manufacturer but one had signed on.[8] In other words, Pantone wasn’t selling color at all — it was turning the promise “this number equals this color” into a standard, and then selling licenses for the right to use that promise. The model persists to this day: even the fashion and interior-design industries’ annual “Color of the Year” announcements are a Pantone-trademarked marketing asset.

American and British readers likely met this side of Pantone’s business without ever touching a printing press. In 2016, Pantone broke from its usual one-color pick and named two shades, Rose Quartz and Serenity, as its Colors of the Year — a soft pink-and-blue pairing that US and UK fashion, design, and marketing outlets quickly rebranded “millennial pink,” a nickname that stuck around in headlines for the next several years.[12] No dye chemistry or optics made that pink special; it became ubiquitous because a color-licensing company said so, and retailers followed. It’s a fitting coda to the CMYK story above: the industry that once fought to make ink pigments physically consistent now spends just as much energy making a color culturally desirable.

The Rulers of Standardization: Color Pinned Down by Coordinates, and sRGB

While RGB and CMYK each settled into their own practical roles, scientists were pursuing a somewhat different question: was there a way to represent every color a human being can perceive as a precise number, independent of any particular device or medium?

The answer came in 1931, when the International Commission on Illumination (CIE) adopted a color space now known as “CIE 1931.”[9] Built from experimental measurements of how people actually perceive color, this standard expressed every color as a set of three coordinates — X, Y, and Z. Plotted on a plane, these coordinates produce the familiar horseshoe-shaped chromaticity diagram seen throughout color science. Where RGB and CMYK are standards about how to manufacture a color on a given device, CIE 1931 is an absolute reference standard for how color is perceived in the first place. Nearly every color standard that followed has used CIE 1931 as its reference point.

CIE 1931 chromaticity diagram
The CIE 1931 chromaticity diagram, plotting human color perception as coordinates. Source: Wikimedia Commons (CC BY-SA 2.5)

The trouble was that, well into the early 1990s, digital images were still being created without any reference to this absolute standard. Depending on the software, graphics card, and monitor used to create an image, the same RGB values could produce visibly different colors on screen. Barring pure coincidence, the color a creator intended and the color a viewer actually saw rarely matched.[10]

To sort out this chaos, Hewlett-Packard (HP) and Microsoft jointly proposed a standardized color space called sRGB in 1996.[10] Using the display characteristics of a specific CRT monitor as its baseline, sRGB established a firm promise: “given these RGB values, this is the color that should appear on screen.” sRGB was formally adopted as international standard IEC 61966-2-1 by the International Electrotechnical Commission (IEC) in 1999, and it became the default color space for the vast majority of web images and digital devices that don’t specify a different color profile.[11] The overwhelming majority of colors we see on screens today trace back to this 1996 standard.

Even so, sRGB can’t capture the full range of color the human eye can perceive. On the CIE 1931 diagram, the region visible to the human eye is far larger than the comparatively narrow triangle sRGB is able to reproduce. That gap gave rise to a succession of wider-gamut standards, including Adobe RGB and Apple’s Display P3. Display P3 in particular has become the default on many recent smartphones and high-end monitors, letting devices reproduce richer, more vivid reds and greens than sRGB allows.

Why the Same #FF0000 Can Look Like a Different Red

By this point, a paradox remains. With RGB, CMYK, Pantone, and sRGB all in place, why does the same color code still look different from one device to the next?

The answer is that a standard is a rule, not a guarantee. #FF0000 is just an instruction: “set red to maximum, green and blue to zero.” How red the screen actually looks depends on whether that screen is calibrated to accurately reproduce sRGB, whether it uses a wider gamut like Display P3, or whether its panel has simply faded with age. The same holds for print. Identical CMYK values can produce different colors depending on the paper’s texture and absorbency, the ink manufacturer, and the condition of the printing press. A Pantone number narrows this gap, but only if the ink formulation is followed precisely.

In the end, a single, perfectly unified color code is impossible. Color isn’t a number — it’s a phenomenon in which light reaches the eye and the brain interprets it, and every device, material, and lighting condition in between differs. That’s exactly why RGB and CMYK split into opposite principles from the start, and why sRGB and Display P3 stake out different claims on the visible spectrum. The history of color standards isn’t really a search for one perfect color language — it’s a running history of different media and industries continually renegotiating their best compromise within their own physical limits.


References

[1]: Wikipedia, “Additive color” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/Additive_color); Wikipedia, “Subtractive color” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/Subtractive_color)

[2]: Wikipedia, “Young–Helmholtz theory” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/Young–Helmholtz_theory)

[3]: ATSC, “Cooperation Created NTSC Color TV” (factual reference; https://www.atsc.org/news/cooperation-created-compatible-color-tv/); Wikipedia, “NTSC” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/NTSC)

[4]: Wikipedia, “Web colors” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/Web_colors); Wikipedia, “X11 color names” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/X11_color_names)

[5]: SitePoint, “Web-Safe Color Palette - Is It Still Relevant?” (factual reference, no direct quotation; https://www.sitepoint.com/web-safe-color-palette-is-it-still-relevant/); ColorSlurp, “A Dive Into Web Safe Colors, And Why You Shouldn’t Use Them” (factual reference, no direct quotation; https://colorslurp.com/blog/web-safe-colors)

[6]: Wikipedia, “Jacob Christoph Le Blon” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/Jacob_Christoph_Le_Blon); American Printing History Association, “ISO: Origin of the CMYK Four-color Wet Process” (factual reference, no direct quotation; https://printinghistory.org/iso-origin-of-the-cmyk-four-color-wet-process/)

[7]: Wikipedia, “CMYK color model” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/CMYK_color_model); CMYK History, “Thomas A. Lenci and the Eagle Printing Ink Company” (factual reference, no direct quotation; https://cmykhistory.com/thomas-a-lenci-and-the-eagle-printing-ink-company/)

[8]: Hofstra University, “Lawrence Herbert” (factual reference; https://www.hofstra.edu/communication/lawrence-herbert.html); Ideal Work, “Discover the Pantone system” (factual reference, no direct quotation; https://www.idealwork.com/discover-the-pantone-system/)

[9]: Wikipedia, “CIE 1931 color space” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/CIE_1931_color_space)

[10]: W3C, “A Standard Default Color Space for the Internet - sRGB” (factual reference; https://www.w3.org/Graphics/Color/sRGB.html); Wikipedia, “sRGB” (CC BY-SA 4.0; https://en.wikipedia.org/wiki/SRGB)

[11]: IEC, “IEC 61966-2-1:1999 - Multimedia systems and equipment - Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB” (factual reference; https://webstore.iec.ch/en/publication/6169)

[12]: Digiday, “Millennial pink: A timeline for the color that refuses to fade” (factual reference; https://digiday.com/marketing/millennial-pink-timeline-color-refuses-fade/); Pantone, “Color of the Year 2016: Rose Quartz and Serenity” (factual reference; https://www.pantone.com/uk/en/articles/color-of-the-year/color-of-the-year-2016)

You Might Also Like