Dark Sea Green

HEX: #8FBC8F | Modern Palette

On White
2.15:1
FAIL
On Black
9.76:1
PASS

Color Specifications

HEX
#8FBC8F
RGB
143, 188, 143
HSL
120°, 23% ,73%
CMYK
23.94, 0, 23.94, 26.27

About Dark Sea Green

Dark Sea Green (#8FBC8F) is a color with RGB(143, 188, 143) and HSL(120°, 23.94%, 73.73%). It is commonly associated with Calm moods. In design, it fits Pastel, Cool styles and is suitable for Text, Background, Border. Its complementary color is #BC8FBC, which creates strong contrast. Its triadic palette includes #8F8FBC and Rosy Brown (#BC8F8F). The name comes from Dark Sea Green (English).

  • HEX: #8FBC8F
  • RGB: 143, 188, 143
  • HSL: 120°, 23.94%, 73.73%
  • Mood: Calm
  • Style: Pastel, Cool
  • Use case: Text, Background, Border
  • Complementary color: #BC8FBC
  • Triadic colors: #8F8FBC, Rosy Brown (#BC8F8F)
  • The name comes from Dark Sea Green (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 #8FBC8F from deepest shade to lightest tint.

Color Characteristics

Mood
Calm
Style
Pastel Cool

Accessibility Simulation

Deuteranopia #B0B090
Protanopia #B8B88F
Tritanopia #96B7B7
Achromatopsia #B1B1B1

Frequently Asked Questions

Dark Sea Green (#8FBC8F) is a color with RGB(143, 188, 143) and HSL(120°, 23.94%, 73.73%).

#8FBC8F pairs strongly with #BC8FBC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8FBC8F is suitable for Text, Background, Border and works well with Pastel, Cool styles.

#8FBC8F is commonly associated with Calm.

The name Dark Sea Green is linked to Dark Sea Green from English, meaning A dark shade of green, reminiscent of the color of the sea in certain conditions or of deep-sea flora..

Name, History & Etymology

Origin Word Dark Sea Green
Meaning A dark shade of green, reminiscent of the color of the sea in certain conditions or of deep-sea flora.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The concept of 'sea green' as a color has existed for centuries, referring to the greenish-blue hues often seen in ocean water. Adding 'dark' to this descriptor helps to differentiate a specific, deeper shade from lighter or more vibrant 'sea greens'. This particular shade (#8fbc8f) is notably part of the X11 color names, which were established for use in computer graphics, solidifying its recognition in digital and web design contexts.

First Recorded Use

The specific compound name 'Dark Sea Green' as a standardized color name likely emerged with the increasing precision in color naming and standardization efforts, particularly in art, fashion, and later digital contexts. While 'sea green' has older roots, the 'dark' modifier for a specific shade became more common in the late 19th or early 20th century.

Cultural Associations

In general, green colors are associated with nature, growth, renewal, and tranquility. 'Sea green' specifically evokes marine environments, often suggesting calmness, depth, and sometimes mystery. The 'dark' aspect can add a sense of sophistication or seriousness compared to brighter greens. It's a color often found in natural landscapes, particularly coastal or underwater scenes, and can be used to create a serene or earthy aesthetic in design.

Similar Named Colors

Eton Blue #96C8A2 ΔE 3.96
Fern #71BC78 ΔE 6.31
Olivine #9AB973 ΔE 7.25
Asparagus #87A96B ΔE 7.53

Code Snippets

/* Background */
.element {
    background-color: #8FBC8F;
}

/* Text */
.element {
    color: #8FBC8F;
}

/* Border */
.element {
    border: 1px solid #8FBC8F;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8FBC8F,
        #CCACCC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8FBC8F,
        #CCACCC
    );
}

// SCSS variable
$dark-sea-green: #8FBC8F;

// With RGB channels (useful for rgba() usage)
$dark-sea-green-r: 143;
$dark-sea-green-g: 188;
$dark-sea-green-b: 143;

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