I'm color blind. I have Deuteranomaly[1], the most common type of red/green color blindness, which affects the way I perceive various colors, not just red and green. It's a big reason why there's nearly no color on this site. I could say that it's because black and white reflect a fundamental part of who I am given my color vision deficiency, but to be completely honest, I just didn't want to worry about a color scheme when I wouldn't see it for what it was. After all, it's my site, right?
But recently, someone said something that got me thinking. "Your portfolio would look so much better with a splash of color!"
So, I decided to experiment. I played with a lot of color themes and changes but I could never settle on something I was particularly proud of or happy with. In frustration, I started researching chromatics, and specifically, color theory.
This research ultimately led to a lot of learning, a lot of interesting conclusions, and a blog post.
Which brings us to the question — what color is your browser?
Colors In Pixels
When you opened this page, photons of light traveled from your screen to your eyes at approximately 299,792,458 meters per second. But what color were those photons?
Right now, you're either reading black text on a white background or white text on a black background. Or are you? What we perceive as "white" is actually your screen's pixels firing away at full intensity — red, green, and blue subpixels working in perfect harmony to create the illusion of colorlessness[2]. And the "black" text or background? It's (typically) not black — It's simply the absence of emitted light[2]. Your browser isn't really creating black at all — it's creating nothing.
But how do browsers "see" color?
How Browsers See Color
There are several ways to tell browsers to display a specific color.
Hexadecimal
Hexadecimal color
Hexadecimal[3] codes might be the most recognizable — six characters where each pair of digits represents red, green, and blue values in base-16 (0 - F).
RGB
RGB Color
RGB[4] takes numbers from 0 - 255, or percentages from 0% to 100%, where each number controls how much of that color is present. The last (optional) value, 0.0 - 1.0, controls the transparency.
HSL
HSL Color
HSL[5] is a little more intuitive for humans, at least in readability. Instead of mixing red, green, and blue values, you choose the color directly (based on a color wheel, where 0 is red, 120 is green, and 240 is blue) and adjust its properties accordingly.
Where Does Color Exist?
Here's where it gets fun.
If I asked you to point to where these colors exist, where would you point? At your screen? In the computer's memory? In your brain? The truth is, color doesn't exist in any of these places — at least not in the way we think it does. Color, as we perceive it, is actually a biological interpretation of electromagnetic radiation[6].
The Science of Seeing Color
Earlier when I asked about the color of the photons of light traveling from your screen to your eyes — it was a trick question.
Photons don't have "color" — they have energy that corresponds to specific wavelengths of electromagnetic radiation. What we call "red" is our brain's interpretation of photons with wavelengths around 700 nanometers. "Blue" is our interpretation of wavelengths around 450 nanometers[7].
Here's what happens when you see color on your screen —
- A developer writes color: #FF0000
- Your browser converts this into instructions for your graphics card
- The graphics card tells specific pixels to filter light in precise ways
- These pixels excite electrons in your screen's display
- Those electrons release photons of specific wavelengths
- These photons interact with specialized proteins in your retinal cone cells
- Your cone cells trigger a cascade of neural signals
- Your visual cortex processes these signals
- Your brain constructs the experience we call "red"
The profound thing isn't just that colors don't exist in photons[8] — it's that the entire experience of color is your brain's interpretation of wavelength data, shaped by millions of years of evolution.
The Superhuman Spectrum
Did you know that some people can see colors that don't exist for the rest of us? Tetrachromats[9] have four types of cone cells in their retinas instead of the usual three. This means they can potentially distinguish up to an estimated 100 million colors, compared to the 1 million colors the rest of us can see.
Similarly, your browser can work with color spaces that go beyond traditional displays. Modern standards like Rec. 2020 and Display P3 define broader ranges of colors mathematically, enabling more vibrant and saturated colors than standard sRGB displays can show.
CSS code to utilize the Display P3 color space
This represents the intersection where mathematical precision meets the limits of human perception — reminding us that color exists both as precise numbers in code and as deeply subjective experiences in our minds.
The Evolution of Digital Color
Browsers haven't always been able to process so many colors, though. The colors we see on our screens today would have been impossible to create 30 years ago. Without going into too much detail about color depth, resolution, and VRAM — limitations led to the use of 8-bit color, allowing for only 256 different colors[2]. Of these 256 colors, only 216 were designated as "web-safe" colors. Why 216? Why not all 256? The colors were selected to ensure consistent display across different operating systems and devices, avoiding visual discrepancies caused by dithering or limited palettes.
But now? Your browser can theoretically display millions of colors. I say theoretically because your eyes can't distinguish them all. The difference between #FF0000 and #FF0001 is imperceptible to human vision. Yet to your browser, these are as different as red and blue are to you.
The Browser as an Interface
We've explored photons, pixels, and perception shaping our experiences of color, but there's another layer worth examining — the browser itself as an interface between the mathematical and the experiential.
Your browser is simultaneously —
- A translator that converts hexadecimal values into pixel instructions
- An interpreter that bridges the gap between human-readable CSS and machine-level operations
- One of many windows through which we experience the digital world
The browser's capabilities, settings, and limitations shape how we experience the web. The colors we see aren't just filtered through our biology — they're filtered through layers of software abstraction and interpretation.
Color, Consciousness, and Computation
So — again — what color is your browser?
The answer depends on what we mean by color, and what we mean by "is". Your browser simultaneously sees more colors than you ever could, and sees no colors at all. It is both colorblind and color-omniscient. It processes mathematical abstractions that our brains interpret as color, but it never experiences qualia — the subjective experience — of color itself.
What if consciousness, the very ability to perceive and experience color, is just another form of computation? Perhaps, in the same way a browser processes pixel data mathematically to render a color, our brains process sensory information computationally to create the vibrant, subjective experience of the world. If that’s the case, could consciousness itself be understood as a highly sophisticated form of computation, with each of us interpreting the world through the lens of our own neural processes?
And maybe that's what makes color so fascinating. It exists at the intersection of physics, biology, technology, and consciousness. It's both precisely definable and inherently subjective. Your browser might process color with perfect mathematical precision, but only your consciousness can transform those calculations into a specific experience of color that makes it so beautiful.
Also, no — I will not be adding any color to my site.
Thanks for reading! Let me know what you think. & as always, happy coding!
References
1 : Red-Green Color blindness & Other Color Vision Deficiencies
2 : How Digital Screens Display Colour
3 : Hexadecimal color notation
4 : rgba() color notation
5 : hsla() color notation
6 : The Visible Spectrum: Britannica
7 : The Visible Spectrum: Wikipedia
8 : Photons: Wikipedia
9 : Tetrachromacy