Moonstone Blue
HEX: #73A9C2 | Modern Palette
Color Specifications
#73A9C2
115, 169, 194
198°, 40% ,76%
40.72, 12.89, 0, 23.92
About Moonstone Blue
Moonstone Blue (#73A9C2) is a color with RGB(115, 169, 194) and HSL(198.99°, 40.72%, 76.08%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Print. Its complementary color is #C28C73, which creates strong contrast. Its triadic palette includes #C273A9 and #A9C273. The name comes from Moonstone Blue (English).
- HEX: #73A9C2
- RGB: 115, 169, 194
- HSL: 198.99°, 40.72%, 76.08%
- Mood: Calm
- Style: Cool
- Use case: Text, Print
- Complementary color: #C28C73
- Triadic colors: #C273A9, #A9C273
- The name comes from Moonstone Blue (English).
Live Components
Color Palettes
Moonstone Blue #73A9C2 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
Moonstone Blue #73A9C2 pairs with #C28C73 as its complementary color, and #C273A9 and #A9C273 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'moonstone blue' emerged as a descriptive color name, likely gaining traction in the late 20th century within fashion, interior design, and automotive industries to evoke a sense of calm, elegance, and a subtle shimmer. It directly references the gemstone moonstone, known for its adularescence (a blue-white light that appears to shimmer across the surface of a cut gemstone). The hexadecimal code #73a9c2 specifically defines a particular shade within this spectrum, a muted, medium-light blue.
First Recorded Use
1980s-1990s (as a named color in fashion/design)
Cultural Associations
Moonstone itself is associated with femininity, intuition, and emotional balance in various cultures. The color 'moonstone blue' inherits some of these connotations, often perceived as serene, sophisticated, and ethereal. It's a popular choice for items intended to convey tranquility or a touch of understated luxury.
Code Snippets
/* Background */
.element {
background-color: #73A9C2;
}
/* Text */
.element {
color: #73A9C2;
}
/* Border */
.element {
border: 1px solid #73A9C2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#73A9C2,
#DBB9A9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#73A9C2,
#DBB9A9
);
}
// SCSS variable
$moonstone-blue: #73A9C2;
// With RGB channels (useful for rgba() usage)
$moonstone-blue-r: 115;
$moonstone-blue-g: 169;
$moonstone-blue-b: 194;
// Usage
.element {
background-color: $moonstone-blue;
color: rgba($moonstone-blue-r, $moonstone-blue-g, $moonstone-blue-b, 0.8);
}