Turquoise Blue
HEX: #00FFEF | Modern Palette
Color Specifications
#00FFEF
0, 255, 239
176°, 100% ,50%
100, 0, 6, 0
About Turquoise Blue
Turquoise Blue (#00FFEF) is a color with RGB(0, 255, 239) and HSL(176.2°, 100%, 50%). 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 #FF0010, which creates strong contrast. Its triadic palette includes #EF00FF and Canary Yellow (#FFEF00). The name comes from turquoise (French).
- HEX: #00FFEF
- RGB: 0, 255, 239
- HSL: 176.2°, 100%, 50%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #FF0010
- Triadic colors: #EF00FF, Canary Yellow (#FFEF00)
- The name comes from turquoise (French).
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 #00FFEF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The gemstone turquoise has been prized for millennia, with evidence of its use dating back to ancient Egypt and Persia. Its distinctive blue-green hue became a recognized color in European languages following the gem's introduction. The addition of 'Blue' in 'Turquoise Blue' serves to emphasize the bluer end of the turquoise spectrum, distinguishing it from greener variations.
First Recorded Use
The color name 'turquoise' was first recorded in English in the 16th century, referring to the gemstone. The specific compound 'Turquoise Blue' likely emerged later to differentiate it from other shades of turquoise.
Cultural Associations
Turquoise is culturally significant in many parts of the world, particularly in Native American cultures of the Southwestern United States, where it is considered sacred and used in jewelry and ceremonies. It is also associated with protection, wisdom, and tranquility in various traditions.
Code Snippets
/* Background */
.element {
background-color: #00FFEF;
}
/* Text */
.element {
color: #00FFEF;
}
/* Border */
.element {
border: 1px solid #00FFEF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00FFEF,
#FF0010
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00FFEF,
#FF0010
);
}
// SCSS variable
$turquoise-blue: #00FFEF;
// With RGB channels (useful for rgba() usage)
$turquoise-blue-r: 0;
$turquoise-blue-g: 255;
$turquoise-blue-b: 239;
// Usage
.element {
background-color: $turquoise-blue;
color: rgba($turquoise-blue-r, $turquoise-blue-g, $turquoise-blue-b, 0.8);
}