Desaturated Cyan
HEX: #669999 | Modern Palette
Color Specifications
#669999
102, 153, 153
180°, 33% ,60%
33.33, 0, 0, 40
About Desaturated Cyan
Desaturated Cyan (#669999) is a color with RGB(102, 153, 153) and HSL(180°, 33.33%, 60%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is Copper Rose (#996666), which creates strong contrast. Its triadic palette includes #996699 and #999966. The name comes from Desaturated Cyan (English).
- HEX: #669999
- RGB: 102, 153, 153
- HSL: 180°, 33.33%, 60%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: Copper Rose (#996666)
- Triadic colors: #996699, #999966
- The name comes from Desaturated Cyan (English).
Live Components
Color Palettes
Desaturated Cyan #669999 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Desaturated Cyan #669999 pairs with Copper Rose (#996666) as its complementary color, and #996699 and #999966 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'saturation' in color theory dates back centuries, with scientists like Isaac Newton observing the purity of colors. However, the precise term 'desaturated' applied to specific color names like 'cyan' became common parlance with the advent of digital graphics and photography. In digital color spaces, saturation is a quantifiable attribute, allowing for precise manipulation and description. '#669999' is a hexadecimal color code, a system widely used in web design and digital media since the mid-1990s. This specific shade is a muted, somewhat grayish-blue-green.
First Recorded Use
While 'cyan' as a color name has older roots, the specific compound term 'desaturated cyan' likely emerged with the widespread adoption of digital color models (like HSL, HSV, or digital image editing software) where saturation is an explicit parameter that can be manipulated and described. This would place its common usage in the late 20th century, particularly from the 1980s-1990s onwards.
Cultural Associations
Desaturated colors often evoke feelings of calm, sophistication, nostalgia, or a vintage aesthetic. They are frequently used in minimalist design, corporate branding for a serious or trustworthy image, and in photography to create a subdued or artistic mood. 'Desaturated Cyan' specifically might be associated with muted natural elements like hazy skies, deep ocean depths on an overcast day, or aged metals. It avoids the vibrancy of pure cyan, offering a more understated presence.
Code Snippets
/* Background */
.element {
background-color: #669999;
}
/* Text */
.element {
color: #669999;
}
/* Border */
.element {
border: 1px solid #669999;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#669999,
#BB7777
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#669999,
#BB7777
);
}
// SCSS variable
$desaturated-cyan: #669999;
// With RGB channels (useful for rgba() usage)
$desaturated-cyan-r: 102;
$desaturated-cyan-g: 153;
$desaturated-cyan-b: 153;
// Usage
.element {
background-color: $desaturated-cyan;
color: rgba($desaturated-cyan-r, $desaturated-cyan-g, $desaturated-cyan-b, 0.8);
}