Bright Turquoise
HEX: #08E8DE | Modern Palette
Color Specifications
#08E8DE
8, 232, 222
177°, 96% ,90%
96.55, 0, 4.31, 9.02
About Bright Turquoise
Bright Turquoise (#08E8DE) is a color with RGB(8, 232, 222) and HSL(177.32°, 96.55%, 90.98%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #E80812, which creates strong contrast. Its triadic palette includes #DE08E8 and #E8DE08. The name comes from Bright Turquoise (English).
- HEX: #08E8DE
- RGB: 8, 232, 222
- HSL: 177.32°, 96.55%, 90.98%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #E80812
- Triadic colors: #DE08E8, #E8DE08
- The name comes from Bright Turquoise (English).
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 #08E8DE from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color turquoise itself is named after the gemstone, which was brought to Europe from Turkey (hence 'turquoise', meaning 'Turkish' in French). Historically, turquoise was a highly valued stone and color, especially in ancient Egypt, Persia, and among Native American cultures. The 'bright' descriptor emerged as color palettes expanded and the need for more specific differentiation arose. It distinguishes this particular shade from darker, duller, or more greenish variations of turquoise. Its popularity surged in fashion and interior design during periods that favored vibrant colors, such as the mid-century modern era and the 1980s.
First Recorded Use
While 'turquoise' as a color name dates back to the 16th century, the specific modifier 'bright' to denote a more vivid version became common with the expansion of synthetic dyes and more precise color naming in the mid-20th century (e.g., 1950s-1970s).
Cultural Associations
Bright turquoise is often associated with tropical waters, summer, and vacation. It evokes feelings of freshness, energy, and clarity. In some cultures, turquoise is believed to have protective qualities or bring good fortune. Its brightness gives it a modern and sometimes playful feel, making it popular in contemporary design, sportswear, and digital interfaces. It's a color that stands out and can be seen as optimistic and lively.
Code Snippets
/* Background */
.element {
background-color: #08E8DE;
}
/* Text */
.element {
color: #08E8DE;
}
/* Border */
.element {
border: 1px solid #08E8DE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#08E8DE,
#FED2D4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#08E8DE,
#FED2D4
);
}
// SCSS variable
$bright-turquoise: #08E8DE;
// With RGB channels (useful for rgba() usage)
$bright-turquoise-r: 8;
$bright-turquoise-g: 232;
$bright-turquoise-b: 222;
// Usage
.element {
background-color: $bright-turquoise;
color: rgba($bright-turquoise-r, $bright-turquoise-g, $bright-turquoise-b, 0.8);
}