Silver Lake Blue

HEX: #5D89BA | Modern Palette

On White
3.65:1
FAIL
On Black
5.75:1
PASS

Color Specifications

HEX
#5D89BA
RGB
93, 137, 186
HSL
211°, 50% ,72%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Style
Cool
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #7E7EBB
Protanopia #8585BA
Tritanopia #4F9090
Achromatopsia #868686

Frequently Asked Questions

Silver Lake Blue (#5D89BA) is a color with RGB(93, 137, 186) and HSL(211.61°, 50%, 72.94%).

#5D89BA pairs strongly with #BA8E5D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#5D89BA is suitable for Text, Button, Logo and works well with Cool styles.

The name Silver Lake Blue is linked to Silver Lake Blue from English, meaning A specific shade of blue, likely inspired by the color of water or sky observed at a location named 'Silver Lake'..

Name, History & Etymology

Origin Word Silver Lake Blue
Meaning A specific shade of blue, likely inspired by the color of water or sky observed at a location named 'Silver Lake'.
Language English
First Recorded Use 20th Century

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.

Similar Named Colors

Cyan Azure #4E82B4 ΔE 3.20
Glaucous #6082B6 ΔE 3.22
Cyan-blue Azure #4682BF ΔE 3.63
Steel Blue #4682B4 ΔE 4.22

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);
}