Silver Lake Blue
HEX: #5D89BA | Modern Palette
Color Specifications
#5D89BA
93, 137, 186
211°, 50% ,72%
50, 26.34, 0, 27.06
About Silver Lake Blue
Silver Lake Blue (#5D89BA) is a color with RGB(93, 137, 186) and HSL(211.61°, 50%, 72.94%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #BA8E5D, which creates strong contrast. Its triadic palette includes #BA5D89 and #89BA5D. The name comes from Silver Lake Blue (English).
- HEX: #5D89BA
- RGB: 93, 137, 186
- HSL: 211.61°, 50%, 72.94%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #BA8E5D
- Triadic colors: #BA5D89, #89BA5D
- The name comes from Silver Lake Blue (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 #5D89BA from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Color names like 'Silver Lake Blue' often emerge from commercial product lines (paints, fabrics, cosmetics) or as descriptive terms in art and design. 'Silver Lake' itself is a common place name in the United States and other English-speaking countries, referring to a lake with a silvery sheen, perhaps due to light reflection, mineral content, or a specific type of fish. The 'blue' would then be an interpretation of the water or sky color associated with such a lake. Without a specific brand or artist to attribute it to, its history remains generalized to the evolution of descriptive color naming.
First Recorded Use
The exact first use is difficult to pinpoint without specific historical records for this particular color name. However, the naming convention suggests a modern origin, likely post-1900, as specific named shades became more common with industrial paint and dye production.
Cultural Associations
The name evokes imagery of nature, tranquility, and perhaps a slightly muted or cool blue, reminiscent of water under certain light conditions. It doesn't carry significant historical cultural weight beyond its descriptive qualities, unlike colors tied to ancient dyes or specific historical events. Its cultural impact is more aligned with modern aesthetics and design trends that favor nature-inspired palettes.
Code Snippets
/* Background */
.element {
background-color: #5D89BA;
}
/* Text */
.element {
color: #5D89BA;
}
/* Border */
.element {
border: 1px solid #5D89BA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#5D89BA,
#DCBC97
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#5D89BA,
#DCBC97
);
}
// SCSS variable
$silver-lake-blue: #5D89BA;
// With RGB channels (useful for rgba() usage)
$silver-lake-blue-r: 93;
$silver-lake-blue-g: 137;
$silver-lake-blue-b: 186;
// Usage
.element {
background-color: $silver-lake-blue;
color: rgba($silver-lake-blue-r, $silver-lake-blue-g, $silver-lake-blue-b, 0.8);
}