Pearl Aqua
HEX: #88D8C0 | Modern Palette
Color Specifications
#88D8C0
136, 216, 192
162°, 37% ,84%
37.04, 0, 11.11, 15.29
About Pearl Aqua
Pearl Aqua (#88D8C0) is a color with RGB(136, 216, 192) and HSL(162°, 37.04%, 84.71%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #D888A0, which creates strong contrast. Its triadic palette includes #C088D8 and #D8C088. The name comes from Pearl Aqua (English).
- HEX: #88D8C0
- RGB: 136, 216, 192
- HSL: 162°, 37.04%, 84.71%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #D888A0
- Triadic colors: #C088D8, #D8C088
- The name comes from Pearl Aqua (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 #88D8C0 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C5C5C2
#D1D1C0
#8DD5D5
#C9C9C9
Frequently Asked Questions
Name, History & Etymology
History
The term 'aqua' has been used to describe blue-green colors since at least the late 19th century, often associated with water or marine themes. 'Pearl' has long been used to describe colors with a soft, lustrous quality, often off-white or very pale shades. The combination 'Pearl Aqua' specifically aims to evoke a soft, slightly muted, and perhaps subtly shimmering blue-green, distinct from a vibrant or deep aqua. Its rise is linked to the need for more descriptive and nuanced color names in digital and commercial contexts.
First Recorded Use
The specific combination 'Pearl Aqua' as a named color, particularly with a defined hex code like #88d8c0, gained prominence with the advent of digital color systems, web design, and standardized color palettes. While 'aqua' and 'pearl' have older uses, their precise pairing for a specific shade is more modern.
Cultural Associations
This color often evokes feelings of calmness, serenity, and freshness. It's frequently used in designs aiming for a clean, modern, or spa-like aesthetic. It can be associated with nature (clear water, tropical seas), luxury (due to 'pearl'), and tranquility. It's a popular choice in interior design, fashion, and branding for products related to wellness, beauty, and technology.
Code Snippets
/* Background */
.element {
background-color: #88D8C0;
}
/* Text */
.element {
color: #88D8C0;
}
/* Border */
.element {
border: 1px solid #88D8C0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#88D8C0,
#E6CAD2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#88D8C0,
#E6CAD2
);
}
// SCSS variable
$pearl-aqua: #88D8C0;
// With RGB channels (useful for rgba() usage)
$pearl-aqua-r: 136;
$pearl-aqua-g: 216;
$pearl-aqua-b: 192;
// Usage
.element {
background-color: $pearl-aqua;
color: rgba($pearl-aqua-r, $pearl-aqua-g, $pearl-aqua-b, 0.8);
}