Dark Cyan

HEX: #008B8B | Modern Palette

On White
4.15:1
FAIL
On Black
5.07:1
PASS

Color Specifications

HEX
#008B8B
RGB
0, 139, 139
HSL
180°, 100% ,54%
CMYK
100, 0, 0, 45.49

About Dark Cyan

Dark Cyan (#008B8B) is a color with RGB(0, 139, 139) and HSL(180°, 100%, 54.51%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is Dark Red (#8B0000), which creates strong contrast. Its triadic palette includes Dark Magenta (#8B008B) and #8B8B00.

  • HEX: #008B8B
  • RGB: 0, 139, 139
  • HSL: 180°, 100%, 54.51%
  • Mood: Bold
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: Dark Red (#8B0000)
  • Triadic colors: Dark Magenta (#8B008B), #8B8B00

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 #008B8B from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #77778C
Protanopia #84848B
Tritanopia #008B8B
Achromatopsia #7C7C7C

Frequently Asked Questions

Dark Cyan (#008B8B) is a color with RGB(0, 139, 139) and HSL(180°, 100%, 54.51%).

#008B8B pairs strongly with Dark Red (#8B0000) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#008B8B is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#008B8B is commonly associated with Bold.

Similar Named Colors

Teal Green #00827F ΔE 3.58
Viridian Green #009698 ΔE 3.92
Teal #008080 ΔE 4.03
Celadon Green #2F847C ΔE 4.45

Code Snippets

/* Background */
.element {
    background-color: #008B8B;
}

/* Text */
.element {
    color: #008B8B;
}

/* Border */
.element {
    border: 1px solid #008B8B;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #008B8B,
        #FF1717
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #008B8B,
        #FF1717
    );
}

// SCSS variable
$dark-cyan: #008B8B;

// With RGB channels (useful for rgba() usage)
$dark-cyan-r: 0;
$dark-cyan-g: 139;
$dark-cyan-b: 139;

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