Blue Lagoon

HEX: #5E93A1 | Modern Palette

On White
3.41:1
FAIL
On Black
6.16:1
PASS

Color Specifications

HEX
#5E93A1
RGB
94, 147, 161
HSL
192°, 41% ,63%
CMYK
41.61, 8.7, 0, 36.86

About Blue Lagoon

Blue Lagoon (#5E93A1) is a color with RGB(94, 147, 161) and HSL(192.54°, 41.61%, 63.14%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #A16C5E, which creates strong contrast. Its triadic palette includes #A15E93 and #93A15E. The name comes from Blue Lagoon (English).

  • HEX: #5E93A1
  • RGB: 94, 147, 161
  • HSL: 192.54°, 41.61%, 63.14%
  • Mood: Calm
  • Style: Cool
  • Use case: Text, Logo, Print
  • Complementary color: #A16C5E
  • Triadic colors: #A15E93, #93A15E
  • The name comes from Blue Lagoon (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 #5E93A1 from deepest shade to lightest tint.

Color Characteristics

Mood
Calm
Style
Cool
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #8686A2
Protanopia #8E8EA1
Tritanopia #5A9595
Achromatopsia #8B8B8B

Frequently Asked Questions

Blue Lagoon (#5E93A1) is a color with RGB(94, 147, 161) and HSL(192.54°, 41.61%, 63.14%).

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

#5E93A1 is suitable for Text, Logo, Print and works well with Cool styles.

#5E93A1 is commonly associated with Calm.

The name Blue Lagoon is linked to Blue Lagoon from English, meaning A lagoon characterized by its blue color, often due to mineral content, shallow depth, or specific light conditions..

Name, History & Etymology

Origin Word Blue Lagoon
Meaning A lagoon characterized by its blue color, often due to mineral content, shallow depth, or specific light conditions.
Language English
First Recorded Use Late 19th - Early 20th Century (as a descriptive phrase for natural features); 1980 (as a specific film title)

History

The term 'blue lagoon' likely emerged as a natural descriptor for bodies of water exhibiting a distinct blue hue. Such lagoons are often found in volcanic regions (like Iceland's Blue Lagoon, a geothermal spa) or coral atolls (like those in the Pacific). The phrase gained significant cultural recognition and became a proper noun for various locations and a popular culture reference primarily due to the 1980 romantic adventure film 'The Blue Lagoon', starring Brooke Shields and Christopher Atkins. This film, and its 1949 predecessor, popularized the imagery of idyllic, isolated tropical settings. The color #5e93a1 is a muted, somewhat desaturated blue-green, reminiscent of shallow tropical waters or the mineral-rich waters of geothermal lagoons.

First Recorded Use

The exact 'first use' of the descriptive phrase 'blue lagoon' is difficult to pinpoint, as it's a natural descriptor. However, its prominence as a cultural touchstone significantly increased with the release of the 1980 film 'The Blue Lagoon'.

Cultural Associations

The 'Blue Lagoon' evokes strong imagery of paradise, isolation, natural beauty, and often, youthful innocence or forbidden love, largely due to the influence of the aforementioned films. It's also associated with specific tourist destinations, most notably the Blue Lagoon geothermal spa in Iceland, which is famous for its milky blue, mineral-rich waters. The color itself, #5e93a1, aligns with this imagery, suggesting a serene, natural, and perhaps slightly mysterious body of water.

Similar Named Colors

Desaturated Cyan #669999 ΔE 6.43
Blue (Munsell) #0093AF ΔE 6.81
Cadet Blue #5F9EA0 ΔE 6.85
Bondi Blue #0095B6 ΔE 7.24

Code Snippets

/* Background */
.element {
    background-color: #5E93A1;
}

/* Text */
.element {
    color: #5E93A1;
}

/* Border */
.element {
    border: 1px solid #5E93A1;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #5E93A1,
        #C88A7A
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #5E93A1,
        #C88A7A
    );
}

// SCSS variable
$blue-lagoon: #5E93A1;

// With RGB channels (useful for rgba() usage)
$blue-lagoon-r: 94;
$blue-lagoon-g: 147;
$blue-lagoon-b: 161;

// Usage
.element {
    background-color: $blue-lagoon;
    color: rgba($blue-lagoon-r, $blue-lagoon-g, $blue-lagoon-b, 0.8);
}