Deep Green-cyan Turquoise
HEX: #0E7C61 | Modern Palette
Color Specifications
#0E7C61
14, 124, 97
165°, 88% ,48%
88.71, 0, 21.77, 51.37
About Deep Green-cyan Turquoise
Deep Green-cyan Turquoise (#0E7C61) is a color with RGB(14, 124, 97) and HSL(165.27°, 88.71%, 48.63%). 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 #7C0E29, which creates strong contrast. Its triadic palette includes #610E7C and #7C610E. The name comes from Deep Green-cyan Turquoise (English).
- HEX: #0E7C61
- RGB: 14, 124, 97
- HSL: 165.27°, 88.71%, 48.63%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #7C0E29
- Triadic colors: #610E7C, #7C610E
- The name comes from Deep Green-cyan Turquoise (English).
Live Components
Color Palettes
Deep Green-cyan Turquoise #0E7C61 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
Deep Green-cyan Turquoise #0E7C61 pairs with #7C0E29 as its complementary color, and #610E7C and #7C610E in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
This color name is a modern, descriptive compound. 'Turquoise' itself comes from the French word for 'Turkish stone,' referring to the gemstone first brought to Europe from Turkey. 'Green-cyan' specifies the hue's position between green and cyan on the color wheel, and 'Deep' indicates its low lightness or high saturation/darkness. Such precise, multi-word color names are common in digital color systems (like X11, HTML, CSS) or commercial paint/fabric lines to differentiate subtle variations.
First Recorded Use
Likely post-2000, as a specific named color for digital or commercial use.
Cultural Associations
Turquoise colors generally evoke images of tropical seas, precious stones, and often have associations with tranquility, wisdom, and protection in various cultures. The 'deep' and 'green-cyan' aspects give this particular shade a more sophisticated, perhaps even mysterious or naturalistic feel compared to a brighter, bluer turquoise. It might be associated with lush underwater environments or rich mineral deposits.
Code Snippets
/* Background */
.element {
background-color: #0E7C61;
}
/* Text */
.element {
color: #0E7C61;
}
/* Border */
.element {
border: 1px solid #0E7C61;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0E7C61,
#EA0E44
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0E7C61,
#EA0E44
);
}
// SCSS variable
$deep-green-cyan-turquoise: #0E7C61;
// With RGB channels (useful for rgba() usage)
$deep-green-cyan-turquoise-r: 14;
$deep-green-cyan-turquoise-g: 124;
$deep-green-cyan-turquoise-b: 97;
// Usage
.element {
background-color: $deep-green-cyan-turquoise;
color: rgba($deep-green-cyan-turquoise-r, $deep-green-cyan-turquoise-g, $deep-green-cyan-turquoise-b, 0.8);
}