Teal
HEX: #008080 | Modern Palette
Color Specifications
#008080
0, 128, 128
180°, 100% ,50%
100, 0, 0, 49.8
About Teal
Teal (#008080) is a color with RGB(0, 128, 128) and HSL(180°, 100%, 50.2%). 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 Maroon (#800000), which creates strong contrast. Its triadic palette includes Purple (#800080) and Olive (#808000). The name comes from Teal (English).
- HEX: #008080
- RGB: 0, 128, 128
- HSL: 180°, 100%, 50.2%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: Maroon (#800000)
- Triadic colors: Purple (#800080), Olive (#808000)
- The name comes from Teal (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 #008080 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'teal' is named directly after the Eurasian teal duck, specifically referring to the color of the stripe on its head and wings. The word 'teal' itself for the bird is of Germanic origin, related to Dutch 'taling' and Low German 'telink'. The use of the bird's name to describe the color became common as early as the 17th century, though its widespread popularity as a distinct color name, especially in fashion and design, grew significantly in the 20th century. It's often considered a darker, more muted version of cyan or a blue-green.
First Recorded Use
1600s
Cultural Associations
Teal is often associated with sophistication, tranquility, and uniqueness. It's a popular color in interior design, often used to create a calming yet elegant atmosphere. In fashion, it can be seen as a versatile color, suitable for both formal and casual wear. It's also frequently used in branding for companies that want to convey a sense of reliability, innovation, or connection to nature (especially water). Due to its association with water and nature, it can evoke feelings of refreshment and peace. In some contexts, it can also be linked to environmental causes.
Code Snippets
/* Background */
.element {
background-color: #008080;
}
/* Text */
.element {
color: #008080;
}
/* Border */
.element {
border: 1px solid #008080;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#008080,
#FF0101
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#008080,
#FF0101
);
}
// SCSS variable
$teal: #008080;
// With RGB channels (useful for rgba() usage)
$teal-r: 0;
$teal-g: 128;
$teal-b: 128;
// Usage
.element {
background-color: $teal;
color: rgba($teal-r, $teal-g, $teal-b, 0.8);
}