Fresh Air

HEX: #A6E7FF | Modern Palette

On White
1.36:1
FAIL
On Black
15.50:1
PASS

Color Specifications

HEX
#A6E7FF
RGB
166, 231, 255
HSL
196°, 34% ,100%
CMYK
34.9, 9.41, 0, 0

About Fresh Air

Fresh Air (#A6E7FF) is a color with RGB(166, 231, 255) and HSL(196.18°, 34.9%, 100%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #FFBEA6, which creates strong contrast. Its triadic palette includes #FFA6E7 and #E7FFA6. The name comes from Fresh Air (English).

  • HEX: #A6E7FF
  • RGB: 166, 231, 255
  • HSL: 196.18°, 34.9%, 100%
  • Style: Pastel, Cool
  • Use case: Text, Background, Print
  • Complementary color: #FFBEA6
  • Triadic colors: #FFA6E7, #E7FFA6
  • The name comes from Fresh Air (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 #A6E7FF from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #D7D7FF
Protanopia #E1E1FF
Tritanopia #A1EAEA
Achromatopsia #DDDDDD

Frequently Asked Questions

Fresh Air (#A6E7FF) is a color with RGB(166, 231, 255) and HSL(196.18°, 34.9%, 100%).

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

#A6E7FF is suitable for Text, Background, Print and works well with Pastel, Cool styles.

The name Fresh Air is linked to Fresh Air from English, meaning Air that is clean, cool, and invigorating, typically found outdoors away from pollution..

Name, History & Etymology

Origin Word Fresh Air
Meaning Air that is clean, cool, and invigorating, typically found outdoors away from pollution.
Language English
First Recorded Use Late 18th - Early 19th Century (as a common phrase)

History

The concept of 'fresh air' gained significant importance during the Industrial Revolution when cities became increasingly polluted. Doctors and public health advocates began to emphasize the health benefits of spending time outdoors and in well-ventilated spaces. This led to the establishment of sanatoriums for tuberculosis patients, which often prioritized exposure to 'fresh air' and sunlight. The phrase also became a common metaphor for new ideas or a change of perspective.

First Recorded Use

While the individual words 'fresh' and 'air' have ancient origins, their combination 'fresh air' as a common idiom for clean outdoor air became prevalent in English during the late 18th and early 19th centuries, coinciding with growing awareness of sanitation and health in urban environments. Earlier uses might exist but not with the same idiomatic weight.

Cultural Associations

Associated with health, well-being, and vitality. Often used in contrast to 'stale air' or 'polluted air'. Commonly invoked in discussions about outdoor activities, nature, and mental clarity. The phrase 'a breath of fresh air' is an idiom meaning something new, refreshing, or a welcome change. In architecture and urban planning, access to fresh air and ventilation has been a key consideration for centuries, becoming particularly emphasized in modern design principles.

Similar Named Colors

Non-photo Blue #A4DDED ΔE 3.34
Columbia Blue #9BDDFF ΔE 3.91
Diamond #B9F2FF ΔE 4.44
Light Blue #ADD8E6 ΔE 5.08

Code Snippets

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

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

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

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

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

// SCSS variable
$fresh-air: #A6E7FF;

// With RGB channels (useful for rgba() usage)
$fresh-air-r: 166;
$fresh-air-g: 231;
$fresh-air-b: 255;

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