Dark Turquoise
HEX: #00CED1 | Modern Palette
Color Specifications
#00CED1
0, 206, 209
180°, 100% ,41%
100, 1, 0, 18
About Dark Turquoise
Dark Turquoise (#00CED1) is a color with RGB(0, 206, 209) and HSL(180.9°, 100%, 41%). 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 #D10300, which creates strong contrast. Its triadic palette includes #D100CE and #CED100. The name comes from Dark Turquoise (English).
- HEX: #00CED1
- RGB: 0, 206, 209
- HSL: 180.9°, 100%, 41%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #D10300
- Triadic colors: #D100CE, #CED100
- The name comes from Dark Turquoise (English).
Live Components
Color Palettes
Dark Turquoise #00CED1 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Turquoise #00CED1 pairs with #D10300 as its complementary color, and #D100CE and #CED100 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Turquoise as a color name is directly linked to the gemstone turquoise, which has been prized for millennia across various cultures (Egyptian, Persian, Native American). The gemstone's color varies from sky-blue to green, often with a waxy luster. When color naming became more granular, 'dark turquoise' emerged to distinguish deeper, richer variations from lighter or more vibrant ones. It is a recognized color in various digital and print color standards, such as X11 color names (where #00CED1 is 'DarkTurquoise').
First Recorded Use
The term 'turquoise' for the color itself became common in English around the 16th century, derived from the French word for 'Turkish' (referring to the origin of the gemstone). The specific modifier 'dark' to denote a particular shade would have naturally followed as color naming became more precise, likely gaining traction in the late 19th or early 20th century with the advent of standardized color systems and widespread use of color in design and fashion.
Cultural Associations
Turquoise, in general, is often associated with tranquility, wisdom, protection, and good fortune in many cultures. It is a popular color in jewelry, art, and interior design. Darker shades like 'dark turquoise' can evoke a sense of sophistication, depth, and richness, sometimes reminiscent of deep ocean waters or ancient, weathered artifacts. It is less common as a primary symbolic color compared to general turquoise but carries similar underlying connotations.
Code Snippets
/* Background */
.element {
background-color: #00CED1;
}
/* Text */
.element {
color: #00CED1;
}
/* Border */
.element {
border: 1px solid #00CED1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00CED1,
#D10300
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00CED1,
#D10300
);
}
// SCSS variable
$dark-turquoise: #00CED1;
// With RGB channels (useful for rgba() usage)
$dark-turquoise-r: 0;
$dark-turquoise-g: 206;
$dark-turquoise-b: 209;
// Usage
.element {
background-color: $dark-turquoise;
color: rgba($dark-turquoise-r, $dark-turquoise-g, $dark-turquoise-b, 0.8);
}