Fresh Air
HEX: #A6E7FF | Modern Palette
Color Specifications
#A6E7FF
166, 231, 255
196°, 34% ,100%
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
Color Palettes
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
Accessibility Simulation
#D7D7FF
#E1E1FF
#A1EAEA
#DDDDDD
Frequently Asked Questions
Name, History & Etymology
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.
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);
}