Non-photo Blue

HEX: #A4DDED | Modern Palette

On White
1.48:1
FAIL
On Black
14.14:1
PASS

Color Specifications

HEX
#A4DDED
RGB
164, 221, 237
HSL
193°, 67% ,78%
CMYK
31, 7, 0, 7

About Non-photo Blue

Non-photo Blue (#A4DDED) is a color with RGB(164, 221, 237) and HSL(193.2°, 67%, 78.6%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #EDB4A4, which creates strong contrast. Its triadic palette includes #EDA4DD and #DDEDA4. The name comes from Non-photo Blue (English).

  • HEX: #A4DDED
  • RGB: 164, 221, 237
  • HSL: 193.2°, 67%, 78.6%
  • Mood: Playful
  • Style: Cool
  • Use case: Text, Button, Accent
  • Complementary color: #EDB4A4
  • Triadic colors: #EDA4DD, #DDEDA4
  • The name comes from Non-photo Blue (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #A4DDED from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #CFCFEE
Protanopia #D8D8ED
Tritanopia #A1DFDF
Achromatopsia #D4D4D4

Frequently Asked Questions

Non-photo Blue (#A4DDED) is a color with RGB(164, 221, 237) and HSL(193.2°, 67%, 78.6%).

#A4DDED pairs strongly with #EDB4A4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A4DDED is suitable for Text, Button, Accent and works well with Cool styles.

#A4DDED is commonly associated with Playful.

The name Non-photo Blue is linked to Non-photo Blue from English, meaning A blue color that is not reproduced by orthochromatic photographic film or by photocopiers..

Name, History & Etymology

Origin Word Non-photo Blue
Meaning A blue color that is not reproduced by orthochromatic photographic film or by photocopiers.
Language English
First Recorded Use Early 20th Century

History

Non-photo blue, also known as non-repro blue, is a specific shade of blue that was developed for use in the graphic arts and printing industries. Its primary characteristic is that it is invisible to orthochromatic film, which was commonly used in early photographic processes for reproduction. This allowed artists and designers to sketch or make notes directly on their artwork using a non-photo blue pencil or pen, and these marks would not appear in the final photographic negative or printed output. As technology advanced, particularly with the advent of digital scanning and photocopying, the original orthochromatic film became less prevalent. However, many modern scanners and photocopiers still have difficulty accurately reproducing this specific shade of blue, often rendering it very faintly or not at all, depending on their sensitivity settings. This makes it still useful in some contexts for preliminary sketching or annotations that are not intended for final reproduction.

First Recorded Use

Circa 1930s-1940s (widespread commercial use)

Cultural Associations

Non-photo blue holds a significant place in the history of graphic design, illustration, and comic book art. Many professional artists from the mid-20th century onwards relied heavily on non-photo blue pencils for their initial layouts and rough sketches before inking their final lines. It became an essential tool in the workflow of comic artists, animators, and technical illustrators. While its practical necessity has diminished with digital tools, it remains a nostalgic and recognizable color for many in these fields, symbolizing the traditional methods of art creation. Some digital art software even includes a 'non-photo blue' layer or brush option to mimic this traditional workflow.

Similar Named Colors

Light Blue #ADD8E6 ΔE 2.83
Blizzard Blue #ACE5EE ΔE 3.28
Fresh Air #A6E7FF ΔE 3.34
Powder Blue #B0E0E6 ΔE 3.83

Code Snippets

/* Background */
.element {
    background-color: #A4DDED;
}

/* Text */
.element {
    color: #A4DDED;
}

/* Border */
.element {
    border: 1px solid #A4DDED;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #A4DDED,
        #EDB4A4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A4DDED,
        #EDB4A4
    );
}

// SCSS variable
$non-photo-blue: #A4DDED;

// With RGB channels (useful for rgba() usage)
$non-photo-blue-r: 164;
$non-photo-blue-g: 221;
$non-photo-blue-b: 237;

// Usage
.element {
    background-color: $non-photo-blue;
    color: rgba($non-photo-blue-r, $non-photo-blue-g, $non-photo-blue-b, 0.8);
}