Aquamarine
HEX: #7FFFD4 | Modern Palette
Color Specifications
#7FFFD4
127, 255, 212
159°, 50% ,100%
50.2, 0, 16.86, 0
About Aquamarine
Aquamarine (#7FFFD4) is a color with RGB(127, 255, 212) and HSL(159.84°, 50.2%, 100%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FF7FAA, which creates strong contrast. Its triadic palette includes #D47FFF and #FFD47F. The name comes from aqua marina (Latin).
- HEX: #7FFFD4
- RGB: 127, 255, 212
- HSL: 159.84°, 50.2%, 100%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FF7FAA
- Triadic colors: #D47FFF, #FFD47F
- The name comes from aqua marina (Latin).
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 #7FFFD4 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E3E3D6
#F5F5D3
#8BFAFA
#E8E8E8
Frequently Asked Questions
Name, History & Etymology
History
Aquamarine is a blue-green variety of the mineral beryl. Its name, meaning 'water of the sea,' perfectly describes its color. Historically, it was believed to protect sailors, ensure a safe voyage, and calm the waves. Ancient Romans believed it could cure illnesses of the throat, stomach, and liver. It was also thought to enhance intellect and make one unconquerable. During the Middle Ages, it was used to counteract the effects of poison. In more recent times, it has been a popular gemstone for jewelry, particularly during the Art Deco period.
First Recorded Use
The term 'aquamarine' as a gemstone name dates back to antiquity, referring to its sea-like color. Pliny the Elder (1st century AD) described beryls (the mineral family aquamarine belongs to) and their various colors, including those resembling the sea.
Cultural Associations
Often associated with the sea, sailors, and mermaids. Considered a symbol of youth, health, and hope. Believed to bring happiness to marriage and is a traditional gift for a 19th wedding anniversary. In some cultures, it is thought to bring courage and reduce fear.
Code Snippets
/* Background */
.element {
background-color: #7FFFD4;
}
/* Text */
.element {
color: #7FFFD4;
}
/* Border */
.element {
border: 1px solid #7FFFD4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7FFFD4,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7FFFD4,
#FFFFFF
);
}
// SCSS variable
$aquamarine: #7FFFD4;
// With RGB channels (useful for rgba() usage)
$aquamarine-r: 127;
$aquamarine-g: 255;
$aquamarine-b: 212;
// Usage
.element {
background-color: $aquamarine;
color: rgba($aquamarine-r, $aquamarine-g, $aquamarine-b, 0.8);
}