All About Color: Colors and Their Formats, Part 1

Intro

What is a Color?

In art, it guides attention, establishes mood, and creates visual relationships. This article explores the structures connecting those perspectives. We will move from RGB vectors and hue geometry to color interpolation, statistics-based color palettes, additive and subtractive mixing, and the use of color in visual storytelling. The goal is not to replace artistic intuition with equations, but to show how mathematics and physics can expand the artist’s creative vocabulary.

Digitally, color is often represented as a combination of red, green and blue light, so it is fundamentally represented as an RGB value, an ordered triple representing the proportions of each of these three components. Many computers originally represented color digitally with 256 values for each channel. This is called standard RGB (sRGB). However, RGB values can also be represented with decimal values between 0-1 as normalized RGB:

\begin{equation} \langle R, G, B \rangle \quad | \quad R, G, B \in [0,255] \label{eq:rgb_range} \end{equation}

Within this format, there are eight main colors that can be created through combinations of red, green and blue values at either there maximum proportion or minimum proportion. These are:

  • Black = (0, 0, 0)
  • White = (255, 255, 255)
  • Red = (255, 0, 0)
  • Green = (0, 255, 0)
  • Blue = (0, 0, 255)
  • Yellow = (255, 255, 0)
  • Cyan = (0, 255, 255)
  • Magenta = (255, 0, 255)

Additive Slider RGB Color Mixer

Red Channel (R)128
Green Channel (G)128
Blue Channel (B)128
rgb(128, 128, 128)
[0.502, 0.502, 0.502]

Mathematically, in mathematical settings, RGB is a vector with three dimensions, where standard RGB is a vector of integers \(\mathbb{Z}^3\) and normalized RGB is a vector of decimals \(\mathbb{R}^3\). The entire Standard RGB color space can be viewed as a cube, where the lengths of each side are 256. With only these 256 values for each color, color values are more limited. When we increase the amount of colors from standard RGB to normalized RGB, we can achieve every color.

Mathematical 3D Standard RGB Color Cube Space

Drag to Rotate | Use Mouse Wheel / Pinch to Zoom

Each of the eight vertices of these cubes are: Red, Green and Blue (the primary colors), Yellow, Cyan and Magenta (secondary colors) and black/white are the extremes. Interpreting colors as spatial coordinates allows very technical artists to easily adjust digital imagery using mathematics.

ColorFamilies
In addition to the primary, colors the color wheel also had secondary colors and tertiary colors that work well together

Additive Luminance (RGB)

    Black or darkness (K) represents the complete absence of light: K = 0
  • Red (R) adds red wavelengths to darkness: R = K + R
  • Green (G) adds green wavelengths to darkness: G = K + G
  • Blue (B) adds blue wavelengths to darkness: B = K + B

Mixing Additive Primaries

Combining the light wavelengths yields the subtractive primaries and white light:

  • R + GYellow
  • G + BCyan (C)
  • B + RMagenta (M)
  • R + G + B White (W)

Different Formats

While RGB is mathematically convenient, it is not intuitive for artists. For example, if an artist wants to make a vivid red look slightly dirtier, darker, or more pastel, determining the adjustments needed across the three red, green, and blue channels simultaneously can be annoying. For that reason, there are other formats such as HSB (Hue, Saturation, Brightness), which is very popular in the art community and is also sometimes called HSV.

HSL Color Format
Many digital artists will instantly recognize this image, and it shows an HSB color format

The Color Wheel

\begin{equation} (R,G,B) \rightarrow (H,S,B) \label{eq:rgbtohsl} \end{equation}

This change in coordinate system unwraps the RGB cube, separates direct color values into three variables hue, saturation and luminance, which align directly with perceptional characteristics and creative intent. Mathematically, it is effectively a nonlinear transformation separating the color channels into different perceptual components.

Hue

Hue represents the fundamental base color identity itself, which we can map onto the traditional 360-degree layout of a color wheel. Expressing hue gives us a method for easily defining color relationship:

Color Wheel Angle
When hues are represented as angles, the relationship between colors becomes more intuitive
Hue is bounded from \( 0 - 360 \) degrees:
\begin{equation} H \in [0^\circ, 360^\circ] \label{eq:huecircle} \end{equation}

For example, the primary colors Red, Green and Blue are spaced 120° degrees apart:

  • 0° = Red
  • 120° = Green
  • 240° = Blue

When hues are represented as degrees around a circle, calculating aspects of color harmony become mathematical and easy to define, many classical artistic color schemes, palettes, become simple geometric relationships. Complementary pairings sit exactly \(180^\circ\) across from one another, while triadic palettes, like the primary colors, form a perfect equilateral triangle spaced exactly \(120^\circ\). Analogous color palettes, like blue, violet and magenta, occupy neighboring regions of the wheel and typically create harmonious, unified designs. Complementary palettes maximize contrast by placing colors on opposite sides of the circle.

The geometric division of the color wheel expands beyond primary components through a process of symmetric mixing. The secondary colors, green, orange, and purple, are created by combining two primary colors in equal 1:1 mathematical ratios, establishing midpoints on the color wheel's circumference. By iterating this process further and mixing a primary color with an adjacent secondary color, tertiary colors like blue-green or red-orange can be generated. The primary, secondary and tertiary colors all sum to white. Split-complementary, triadic, and tetradic palettes can also be described using geometric constructions directly on the hue circle.

This is one reason that color wheels remain useful despite the availability of digital tools. They provide an intuitive geometric map that artists can use to reason about relationships between colors without having to mentally manipulate RGB coordinates. If an artist can intuitive visualize this, they can make quick, creative artistic decisions that are grounded in theory.

Saturation

Saturation measures the absolute purity and vibrance, it also measures how far a color is from gray. In RGB terms, this relates to how unequal the components are. Mathematically, saturation is a measure of the "imbalance" between the the three RGB channels.

\begin{equation} S = \begin{cases} 0 & \text{if } \max(R,G,B) = 0 \\ \frac{\max(R,G,B) - \min(R,G,B)}{\max(R,G,B)} & \text{otherwise} \end{cases} \label{eq:hsbsaturation} \end{equation}

When:

  • S = 0 → grayscale
  • When \(S = 0\), the RGB channel components are perfectly equal \(Red = Green = Blue\), mathematically this collapses the coordinate down to the central grayscale diagonal line stretching from the black vertex to the white vertex of the RGB cube.
  • S = 1 → fully vivid color
  • When \(S = 1\), the color is pushed out to the structural boundaries of the space, operating at its maximum possible vivid intensity.
ColorSaturations
In this figure, the concentric circles increase in saturation from the inside to the outside. Remember, only black, white and greys have zero saturation

From a linear algebra perspective, saturation can be interpreted as distance from the diagonal line \(R = G = B\) in the RGB space. To make this illustration clearer, the vertices (corners) of the RGB cube are black and white as well the three primary colors and the secondary colors.

GreyLine
This figure depicts the muted, zero saturation R=G=B line containing the different shades of pure grey is shown

Geometrically, the grayscale axis acts as a central spine running through the RGB cube from black to white. Every pure gray value lies somewhere along this line because the three channels remain equal. As a color moves farther away from this axis, one or more channels begin to dominate, producing stronger and more vivid hues. This interpretation allows saturation to be viewed as a distance from the muted grays, black and white, rather than simply an artistic slider.

Brightness/Value

Brightness (represented as \(B\) in Photoshop or \(V\) for Value in computer science literature) tracks the overall intensity of the light profile. HSB uses a straightforward approach to determining brightness it is simply the maximum value among the three color channels:

\begin{equation} B = \max(R,G,B) \label{eq:hsbbrightness} \end{equation}

Interactive HSB Color Mixer

The selected hue becomes the left cut plane. Saturation moves the dot outward; brightness moves it upward. Drag to rotate and pinch or wheel to zoom.

HSB(284°, 100%, 20%) RGB(29, 0, 51) #1D0033
RGB and HSB/V are useful for representing and manipulating color, but equal numerical changes in these spaces do not always produce equal perceived changes. Perceptually oriented spaces such as CIELAB and OKLab attempt to address this issue. They are especially useful for color comparison and visual uniformity, but are beyond the scope of this article.

Color Theory & Mathematics

Beneath the aesthetic impact of a color palette is a rigorous architecture of mathematics, physics, and geometry. This is Color theory, it is not merely a collection of artistic guidelines, but a calculable science governed by numerical relationships and spatial logic. By analyzing color through a mathematical lens, we can precisely map the shifts of color, calculate the shifting vectors of color relativity, and partition the color wheel into distinct thermal zones of warm and cool frequencies. Understanding these concepts transforms the canvas from just a space of intuitive experimentation into a predictable system of coordinates, wavelengths, and matrices.

Warm vs Cool Colors

Warm v.s. Cool
Warm and cool halves of the color wheel are divided by a split across red-violet and yellow-green sections

The color wheel can be split directly in half to separate what are called "warm" and "cool" colors, which evoke distinct psychological and physical sensations. Warm colors like reds, oranges, and yellows mimic fire and the sun and they make elements appear closer while stimulating energy and excitement. In contrast, cool colors like blues, greens, and purples mimic water and ice and cause elements to visually recede while promoting calm and relaxation. Classic artistic pairings include red-green, blue-orange, and yellow-purple, though digital screens shift to pairs like red-cyan based on the light spectrum. When placed side-by-side, these opposing pairs create dynamic energy, but when mixed together, they neutralize each other into muted grays, white, or black.

Color Relativity

Color is highly contextual. A single color can appear dramatically different depending on its surroundings. For example, a medium gray placed against a dark background will appear lighter, while the exact same gray placed against a bright background will appear darker.

Relative Color
The characteristics of colors change depending on the other colors that they are surrounded by. In this color relativity graphic the pink inner square on the left side appears cooler when placed next to a warmer orange color, while the exact same violet color appears warmer when placed next to a cooler blue color.

This phenomenon demonstrates that human vision is comparative. Our brains do not measure color in isolation; they continuously compare neighboring regions and adjust perception accordingly. Understanding this effect allows artists to create stronger focal points and more convincing lighting situations without necessarily changing the underlying colors themselves.

It is also important to note that color relativity translates across hue, saturation and luminance, which is another advantage of distinguishing color based on perceptual qualities. As mentioned earlier, greys appear different depending on if they are surrounded by black or white. Also, highly saturated backgrounds make colors appear muted, while desaturated surrounding amplify intensity. Similarly, Also, color hue/temperature operates relatively as well; warm hues appear significantly warmer when juxtaposed with cool colors, and cool tones appear cooler when surrounded by warmth.

Color Interpolation

When you truly analyze every one of the common artistic adjustments, you can describe them as a mathematical operations upon data matrices. For example, blending two colors together isn't an arbitrary mixing process. We can interpolate colors by creating what is called a linear combination of two original colors. This is how cross-fades or alpha-blending are performed, software evaluates a classic linear interpolation, smoothly shifting from one color to the other. The equation governing interpolation is defined as:

\begin{equation} C = \alpha C_1 + (1-\alpha) C_2 \label{eq:interpolationeq} \end{equation}

Here, the resulting color (\C \) is a linear combination, where alpha (\(\alpha\)) acts as a scalar weight scaling between 1.0 and 0.0. As alpha smoothly scales down, the color vector shifts along a straight line trajectory inside the color cube, transitioning smoothly from the starting color \(C_1\) to the destination color \(C_2\).

Color Gradients
This figure depicts a color interpolation between the colors red and yellow

Color Distributions and Color Palettes

We have already explored how mathematics can add harmony and structure to color dynamics, and we can also apply this observation to color palettes, using statistics and mathematical symmetry.

A Bell curve or Gaussian distribution, as it is called in mathematics, is the most naturally occuring statistical distribution. It represents the relative likelihood of various values in a set. Gaussian distributiona concentrates high probability near a central value, the mean, as we move away from the mean the probability decreases toward the tail ends. This bell-shaped curve appears throughout nature because many small independent influences naturally combine to produce a dominant central average with progressively rarer extremes.

Gaussian-Animated
(The Normal Distribution Curve): A standard Gaussian (normal) distribution curve mapping a probability density function. The height at each point represents the probability or number of occurences of the respective value. The central peak represents the mean (μ), while the dashed boundaries illustrate one standard deviation (σ) from the center, encapsulating roughly 68% of the area of the distribution. If you were to sample a point from the distribution, 68% of the time the value will be within the standard deviation.

Traditionally, artists construct color palettes through intuition, experience, or established color harmony rules. However, color selection can also be approached statistically. If we interpret a color wheel as a circular coordinate system, then a probability distribution can be used to determine how frequently different hues appear within a composition. Colors near the center of the distribution become dominant, while colors farther from the center become increasingly rare. In effect, the probability distribution acts as a mathematical recipe that controls the balance, emphasis, and visual rhythm of a palette. To explore this idea, I generated a series of color studies where hue frequencies are sampled from Gaussian distributions and then projected onto structurally symmetrical grids. The resulting patterns are not painted by hand. Instead, the visual compositions emerge directly from the interaction between probability, geometry, and color theory. These experiments demonstrate how statistical structure can be translated into artistic structure.

Warm-Cool-Gaussians Warm-Cool-Gaussians-Plots
(Structuring Color Palettes Mathematically): Color frequencies sampled from Gaussian distributions can be mapped onto a symmetric grid to create balanced visual compositions. The highest-probability colors occupy the largest regions, while lower-probability colors appear progressively farther from the center, producing order directly from mathematical structure. The histogram views reveal how the mathematical structure is projected onto our color wheel, the hue axis. Creating a color palette based on a mathematical structure provides balance and a natural look.

The first studies place the Gaussian center over either a warm or cool region of the color wheel. Because Gaussian distributions allocate most of their probability mass near the mean, the central hue occupies the largest area of the grid while neighboring hues appear with gradually decreasing frequency. The result is a palette that feels naturally unified because most colors belong to the same color family while still retaining subtle variation.

Warm-Cool-Gaussain-Distribution-Loop
This example shows a similar gaussian distribution based color palette, but this distribution is centered around violet, right between the warm and cool parts of the spectrum. Increasing the number of color bins transforms a discrete palette into a smoother approximation of a continuous Gaussian distribution. As resolution increases, color transitions become more gradual and the visual structure more closely reflects the shape of the underlying probability function. Interestingly because this distribution is centered between warm and cool colors. The colors become more muted in the center and high-contrast at the edges. This gives the effect of a portal and is very alluring. The animation also looks very similar to the graphics used in Spotify's Wrapped feature.

These experiments show that color palettes can be treated as mathematical distributions rather than simple collections of colors. The shape of the underlying distribution directly determines the visual character of the resulting composition. A narrow Gaussian produces concentrated palettes with strong thematic identity, while broader distributions create richer transitions and greater diversity. Perhaps the most interesting result occurs when the Gaussian is centered at the boundary between warm and cool colors. In this case, neighboring hues on opposite sides of the temperature divide begin to interact. The center of the palette becomes visually subdued as warm and cool influences balance one another, while the outer regions develop stronger contrast. This creates the impression of depth, energy, and motion despite the image being generated entirely from static mathematical rules. What begins as a mathematical structure ultimately becomes a tool for controlling visual harmony, contrast, and mood.

Color Theory & Nature

In the physical world, color escapes the pristine confines of digital code and enters a complex ecosystem of physics and biology. The hues we perceive in everyday life are shaped by the mechanics of wave optics, atmospheric scattering, and the wiring of human vision. Because natural color is a living interaction between environmental light and physiological reception, capturing it accurately requires different models of representation and analysis.

Additive vs. Subtractive Systems

Digital screens rely on additive mixing of the light before it reaches our eyes, combining emissive beams of red, green and blue that mix together before they shooting straight into our eyes, before color is processed through our retinas and brain. This is called an additive light.

In contrast, nature and traditional print rely on subtractive mixing, where physical pigments absorb specific wavelengths of incoming light and reflect others back to our eyes. This is a subtractive light. For example, when sunlight hits a leaf, the chlorophyll molecules absorb red and blue wavelengths and reflect only green light back to our eyes. While both additive and subtractive light create color in our minds, when it comes to color mixing their dynamics are totally opposite. Additive light sums wavelengths together, whereas mixing subtractive pigments creates a color based strictly on what is left over after both pigments absorb light, the absorbing properties are summed together!

Light Reflection
Light Reflection: Objects appear colored because they absorb some wavelengths of incoming white light while reflecting others. The wavelengths that reach the observer determine the perceived color. Here, blue wavelengths are reflected more strongly than the warmer portions of the spectrum, causing the surface to appear blue despite being illuminated by white light.

Instead of starting from black (the absence of light) and adding base components to build toward white, subtractive mixing begins with white light and strips components away. The primary subtractive pigments, Cyan, Magenta, and Yellow, each absorb exactly one primary additive color. Cyan absorbs red, Magenta absorbs green, and Yellow absorbs blue. Mixing pigments sums the absorption properties, trapping more wavelengths and driving the result closer to black. This shift in physics explains why primary colors invert when it comes to subtractive light, and it is why the color wheel is inverted for digital color and pigments. The version of the color wheel corresponding to digital color is called the Additive Color Wheel and for pigments it is called the Subtractive Color Wheel.

Additive Color Wheel Traditional Color Wheel
Comparative Color Wheels: A structural comparison between the modern physics-based Additive/Subtractive RGB/CMY model (left) and the Traditional painter's RYB model (right). Both systems utilize symmetrical hexagram frameworks to map the geometric relationships between primary, secondary, and tertiary hues, explicitly illustrating how digital light wavelengths (RGB/CMY) diverge from classical physical pigment mixing (RYB).

Subtractive Absorbance

    White light (W) is the combination of Red (R), Green (G) and Blue (B)
  • Cyan (C) subtracts only Red: C = W - R
  • Magenta (M) subtracts only Green: M = W - G
  • Yellow (Y) subtracts only Blue: Y = W - B

Mixing Subtractive Primaries

Combining the wavelengths they absorb yields the additive primaries:

  • C + M = (W - R) + (W - G)Blue
  • M + Y = (W - G) + (W - B)Red
  • Y + C = (W - B) + (W - R)Green

The Traditional Color Wheel

Even though we now know that the Magenta, Cyan and Yellow are the correct primary colors for pigments, originally, artists believed that this color wheel was based around red, yellow and blue as the primary colors.
Original Art Color Wheel
Traditional Color Wheel: An early 18th-century geometric color wheel from Claude Boutet's 1708 treatise "Traité de la peinture en miniature". The diagram demonstrates an early artistic attempt to map physical pigments into a 360-degree color wheel, featuring French labels like jaune (yellow), bleu (blue), and vert (green) organized across geometric sectors.

During the 1700s and 1800s, early scientists and art theorists experimented with the limited paint pigments available at the time. They discovered they could mix a broad variety of shades using red, yellow, and blue paint, mistakenly labeling them the "true" primary colors. Because centuries of art education, classic oil painting techniques, and traditional color harmony theories were built on this foundation, it remains the standard tool taught to children and used by fine artists today.

Modern color science, however, reveals that the true physical primary pigments are actually Cyan, Magenta, and Yellow (CMY). True primary pigments must absorb exactly one type of light wavelength (Red, Green, or Blue) and reflect the other two back to our eyes. Pure red and pure blue paint absorb too much light on their own. When you try to mix red and blue paint in the RYB model to make purple, they absorb almost all light wavelengths. This creates a dull, muddy plum or brown color instead of a vibrant violet. Conversely, mixing Magenta (which reflects red and blue light) with Cyan (which reflects green and blue light) allows the blue wavelengths to pass through cleanly, producing a vivid, beautiful purple. The following table breaks down exactly how these primary bases interact across different creative mediums.

Color Scheme Primary Colors Secondary Colors Tertiary Colors
Additive RGB (Light / Screens) Red, Green, Blue Cyan, Magenta, Yellow Orange (Red-Yellow), Chartreuse (Yellow-Green), Spring Green (Green-Cyan), Azure (Cyan-Blue), Violet (Blue-Magenta), Rose (Magenta-Red)
Subtractive CMY (Modern Print / Ink) Cyan, Magenta, Yellow Red, Green, Blue Vermilion (Red-Magenta), Chartreuse (Yellow-Green), Teal (Cyan-Green), Indigo (Cyan-Blue), Purple (Blue-Magenta), Crimson (Red-Magenta)
Traditional RYB (Art / Paint) Red, Yellow, Blue Orange, Green, Purple Amber (Yellow-Orange), Vermilion (Red-Orange), Chartreuse (Yellow-Green), Teal (Blue-Green), Indigo (Blue-Purple), Magenta (Red-Purple)

Natural Warm vs Cool Color Sources

Warm and cool colors, which we discussed earlier, are not purely artistic inventions. They emerge from repeated patterns observed in nature. Fire, sunlight, incandescent bulbs, and many biological sources emit energy that appears warm. In contrast, shadows, overcast skies, water, and distant atmospheric effects tend to shift toward cooler hues. Because humans encounter these associations throughout life, they become deeply embedded psychological cues as well.

Artists frequently exploit these associations by using warm colors to pull subjects forward and cool colors to push backgrounds away. This simple principle can dramatically increase the sense of depth within a two-dimensional image. Warm colors also bring a sense of energy to a subject, while cooler give a sense of stillness; this is color temperature.

Woman with Parasol Woman with Parasol The Horse Bath
These three images depict the paintings that have warm lighting and cool shadows. The paintings from left to right are "End of Summer" - Claude Monet 1891, "The Woman with the Parasol..." - Claude Monet 1875, and "The Horse's Bath" - Joaquin Sorella 1909
The psychological association of blue with coolness and distance is directly explained by a physical phenomenon called Rayleigh scattering. When full-spectrum sunlight strikes Earth's atmosphere, the gas molecules act as geometric obstacles that scatter electromagnetic waves. Because blue and violet light possess significantly shorter wavelengths than red and orange light, they are scattered much more, scattering wildly across the sky and creating the cool blue dome above us. Conversely, the longer, warmer wavelengths pass straight through the atmosphere with minimal disruption. So, natural light sources appear warm and the blue sky and horizon appears occur to the ambient blue light scattered across space.
Rayleigh Scattering
Rayleigh Scattering Animation: A geometric visualization of Rayleigh scattering. Sunlight containing all visible wavelengths approaches the atmosphere (represented by the white curved boundary). Shorter blue and violet wavelengths scatter immediately upon hitting atmospheric molecules, while the longer, warmer red and yellow wavelengths scatter far less so they often appear visually next to the light source

Importance in Design

Understanding color as a structured mathematical system gives designers a significant advantage. By transforming complex RGB coordinates into independent HSB sliders, artists can establish precise, strategic visual messages within their designs.

HSB is powerful because it decouples artistic control variables:

  • Hue → what color it is
  • Saturation → how intense it is
  • Brightness → how bright it is

Guiding Visual Attention

  • High saturation - draws immediate focus to critical areas in the composition. The human brain naturally notices vivid colors first, making highly-saturated elements ideal for focal points or user-interface buttons.
  • Low brightness - causes objects to recede into the background. Darker, less vibrant tones can be used to anchor framing layouts and ambient backdrops without distracting from primary elements.
  • Hue contrast - creates explicit visual separation, using complementary colors side-by-side makes both elements pop cleanly against each other.

Brightness, which is often called value by artists, is what creates structure and reality, as brightness values are affected by the form and structure of the world. Then, color identicates identity and mood. If we master the structure of light and dark first, we are free to use color as an independent layer of pure emotional storytelling. This is why art teachers often say "the value does the work and color gets the glory." A painting with perfect colors will fail to accurately represent the subject or present a message if the values are wrong, yet paintings with a solid value structure will generally succeed.

Over the course of history, different colors have taken on different meanings across cultures psychologically Thus, as designers we can also embue a scene or character with emotion or a theme using hue and saturation, where hue controls the color and saturation is like an intensity of this feeling or emotion that it produces. For example:

Color Emotions
Each color takes on its own meaning psychologically. Though these meanings may differ based on culture and experience, by and large, they are very similar

Ultimately, understanding color as both an artistic and mathematical vector gives you more control. Instead of relying on only your artistic visual intuition you can also use patterns and geometry to guide your color choices.

Visual Balance

Visual balance describes how the visual weight of colors, shapes, and objects is distributed across a composition. Two objects may occupy the same amount of physical space while still attracting dramatically different amounts of attention. A small, vivid yellow shape may visually compete with a much larger dark-blue region because yellow generally appears brighter, more active, and easier for the eye to detect.

Color therefore has its own form of visual weight. This weight is influenced by hue, brightness, saturation, temperature, contrast, and the surrounding colors. Bright, warm, and highly saturated colors usually advance toward the viewer, while dark, cool, and muted colors tend to recede. Artists can use these differences to create balance without arranging every element symmetrically.

Visual Color Ranking

Under approximately equal conditions of size, saturation, and surrounding contrast, colors can be loosely ranked according to how strongly they attract visual attention:

  1. Yellow
  2. Yellow-Green
  3. Orange
  4. White
  5. Red
  6. Cyan
  7. Green
  8. Magenta
  9. Blue
  10. Violet
  11. Black

This ranking should not be interpreted as an absolute law. A color's visual importance changes with context. Black may appear visually quiet against a dark background, but a small black shape placed inside a pale-yellow field can become an extremely strong focal point. Likewise, a muted yellow may attract less attention than a highly saturated blue. The ranking is most useful as a starting model for understanding how hue and perceived brightness influence visual weight.

Yellow and yellow-green usually appear near the top because the human visual system is highly sensitive to light in this region of the visible spectrum. Orange and red also carry strong visual energy because they are warm colors and are frequently associated with fire, heat, warning, and movement. Blues and violets typically appear darker and more distant, giving them less visual weight unless they are strongly saturated or placed against a contrasting background.

The Seven Color Contrasts

The artist Johannes Itten described seven major forms of color contrast. Each contrast isolates a different relationship between colors and provides a method for controlling hierarchy, balance, rhythm, and emotional intensity.

  • Contrast of Hue – occurs when clearly different hues are placed next to one another. The effect is strongest between distinct primary or secondary colors, such as red, yellow, and blue.
  • Light–Dark Contrast – separates colors according to brightness or value. White against black produces the strongest possible value contrast, while lighter and darker versions of the same hue create depth and structure.
  • Warm–Cool Contrast – places warm reds, oranges, and yellows against cool greens, blues, and violets. Warm colors tend to advance while cool colors tend to recede.
  • Complementary Contrast – occurs between colors positioned opposite one another on the color wheel. Examples include red and cyan in an additive model or red and green in a traditional artistic model.
  • Simultaneous Contrast – describes the way surrounding colors alter perception. The eye tends to generate the impression of a complementary color around a hue, causing identical colors to appear different in different environments.
  • Contrast of Saturation – compares vivid, pure colors with muted, gray, or desaturated colors. A highly saturated accent placed inside a neutral composition can become a powerful focal point.
  • Contrast of Extension – concerns the relative quantities or areas occupied by different colors. A visually strong color may require only a small area to balance a much larger region of a visually weaker color.

Contrast of extension is especially important for visual balance because colors do not need to occupy equal areas to feel equally important. A small yellow region can balance a much larger violet region, while a bright orange accent can balance a broad field of dark blue. The composition becomes balanced when the visual forces feel stable, not necessarily when the shapes are identical or symmetrically arranged.

Mixing and Saturation

Additive and subtractive mixing affect visual balance differently because they manipulate light through opposite physical processes. In additive RGB mixing, light is emitted and combined. Adding another light channel increases the total amount of light and generally raises brightness. For example:

  • Red + GreenYellow
  • Green + BlueCyan
  • Blue + RedMagenta

Adding light can make the result appear more luminous and visually forceful. However, additive mixing does not always increase saturation. Saturation remains high when one or two channels dominate, but it decreases as the red, green, and blue channels become more equal. When all three channels reach equal maximum intensity, the result is white, which has high brightness but no hue saturation.

\[ R = G = B \quad \Rightarrow \quad S = 0 \]

Subtractive mixing begins with reflected white light and removes wavelengths through absorption. When pigments are combined, each pigment absorbs part of the spectrum, so less light is reflected back toward the viewer. The result usually becomes darker and, with real-world paints, often less saturated.

In an ideal subtractive system, cyan, magenta, and yellow can combine to form strong secondary colors. In physical paint, however, pigments rarely absorb perfectly isolated wavelengths. Each pigment removes some desirable light in addition to its intended region of the spectrum. As more pigments are mixed, their absorption ranges overlap, reducing brightness and frequently producing muted browns, grays, or near-black colors.

This creates an important design distinction: additive mixing tends to build luminosity, while subtractive mixing tends to reduce reflected light. Digital colors may become brighter as light is added, whereas physical mixtures often become darker and more muted as pigments accumulate. Artists can use this difference intentionally. Bright additive colors create glowing focal points, while muted subtractive mixtures provide shadows, backgrounds, transitions, and visual rest.

Ultimately, visual balance depends on distributing these color forces across a composition. A large quiet region may be balanced by a small saturated accent, a warm foreground may be stabilized by a cool background, and a dark shape may counteract a much brighter but smaller area. Understanding the visual weight of color allows artists to direct attention deliberately rather than relying only on symmetry or intuition.

Visual Storytelling

Because distinct hues trigger specific psychological associations, artists can use different color grading choices to establish an overall mood or thematic message. One famous cinematic example of this technique is found in The Matrix. The filmmakers applied a heavy green tint to every scene taking place inside the digital simulation, the Matrix, creating an uncomfortably artificial, sterile environment, like a scientific lab. In contrast, scenes set in the real-world city of Zion were color-graded with a distinct, heavy blue tone. Blue tones are more natural to real-world environments, so these scenes were more grounded in reality but also cold and harsh.

Matrix Hues
For example, in the Matrix. The color grading was heavily green when character were in the matrix simulation, but there was a heavy blue tone in the real world.

Another example of visual storytelling is the branding of some of the most popular fast food restaurants. Most of these companies design their brand logo using red as it speaks to desires, one of which is hunger. Some brands also use yellow to give the restaurant a friendly atmosphere and some blue to establish trust. However, the sheer amount of red within these logos is no coincidence.

Restaurant Logo Colors
Restaurant brand logos often include red, which encodes passion and desires, to speak to our hunger

Character Design

Color can be used as a foundational storytelling tool. Because of the psychological associations that we have with color, certain palettes and contrasts can automatically embue characters with personality, morality, and emotion. Different palettes, and contrast can also be used to make characters pop, guide the viewer's eye, and ensure visual distinction.

In addition, Character designers often use geometric arrangements on the color wheel to establish relationships between different characters. In the Sonic the Hedgehog universe, the primary character designs form an almost perfect clean color wheel layout:

Sonic Riders Color Wheel
The main characters of the Sonic universe represent the primary colors in the traditional color wheel, and the design of other characters in the universe seem to be guided by secondary or tertiary colors and geometric color schemes. The characters at the top Sonic, Tails and Knuckles are the franchises main trio. There color schemes are used to show that their personalities and abilities should be harmonious. The trio on the bottom is a rival squad, Team Chaotix (Espio, Vector and Charmy). They have harmonious colors, which are also secondary. Subconsciously this shows that they are another good team that may clash with the main protagonists.

This geometric arrangement visually anchors the primary cast, using distinct color relationships to reinforce their contrasting personalities and balanced roles within the story.

Conclusion

Ultimately, understanding color as an element of language in both art and mathematics provides unparalleled creative control. Instead of relying solely on visual intuition, you can utilize patterns, geometry, and equations to make precise, impactful design choices that place messages and anchors within your compositions.

Thoughts?

If you have questions, corrections, or ideas for future articles, reach out through Youtube(@makingzeniths), Email(makingzeniths@gmail.com), Instagram(@makermeezy) or TikTok(@maker.meezy)

References

  • Itten, J. (1961). The Art of Color: The Subjective Experience and Objective Rationale of Color. Van Nostrand Reinhold.
  • Smith, A. R. (1978). "Color Gamut Transform Pairs." ACM SIGGRAPH Computer Graphics, 12(3), 12–19.
  • Foley, J. D., van Dam, A., Feiner, S. K., & Hughes, J. F. (1995). Computer Graphics: Principles and Practice in C (2nd ed.). Addison-Wesley.
  • Munsell, A. H. (1912). "A Pigment Color System and Notation." The American Journal of Psychology, 23(2), 236–244.
  • Young, T. (1802). "On the Theory of Light and Colours." Philosophical Transactions of the Royal Society of London, 92, 12–48.
  • International Electrotechnical Commission (IEC). (1999). Multimedia systems and equipment - Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB (IEC 61966-2-1:1999).
  • [Boutet, C.] (1708). Traité de la peinture en mignature: Pour apprendre aisément à peindre sans maître. A La Haye: Chez Louis et Henry van Dole.
  • Commission Internationale de l'Éclairage (CIE). (1931). Proceedings of the 8th Session. Cambridge University Press.
  • Comments