Dark Cyan
HEX: #008B8B | Modern Palette
Color Specifications
#008B8B
0, 139, 139
180°, 100% ,54%
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
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 #008B8B from deepest shade to lightest tint.
Frequently Asked Questions
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);
}