Medium Aquamarine
HEX: #66DDAA | Modern Palette
Color Specifications
#66DDAA
102, 221, 170
154°, 53% ,86%
53.85, 0, 23.08, 13.33
About Medium Aquamarine
Medium Aquamarine (#66DDAA) is a color with RGB(102, 221, 170) and HSL(154.29°, 53.85%, 86.67%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #DD6699, which creates strong contrast. Its triadic palette includes #AA66DD and #DDAA66. The name comes from Medium Aquamarine (English).
- HEX: #66DDAA
- RGB: 102, 221, 170
- HSL: 154.29°, 53.85%, 86.67%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #DD6699
- Triadic colors: #AA66DD, #DDAA66
- The name comes from Medium Aquamarine (English).
Live Components
Color Palettes
Medium Aquamarine #66DDAA 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
Medium Aquamarine #66DDAA pairs with #DD6699 as its complementary color, and #AA66DD and #DDAA66 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#C4C4AC
#D4D4A9
#74D7D7
#C8C8C8
Frequently Asked Questions
Name, History & Etymology
History
The term 'aquamarine' itself dates back to at least the Roman era, referring to the color of seawater, and later became associated with the gemstone beryl. As color naming became more precise, especially in digital contexts, modifiers like 'medium' were added to distinguish specific shades within a broader color family. 'Medium Aquamarine' is a specific named color in various digital color palettes, such as the X11 color names, which were influential in early web development.
First Recorded Use
Likely emerged with the advent of digital color systems and web standards (e.g., X11 color names, CSS color names) to provide a more granular and standardized set of color definitions beyond basic named colors.
Cultural Associations
Aquamarine as a color is often associated with the sea, tranquility, clarity, and youth. It is a popular color in fashion, interior design, and jewelry. The 'medium' descriptor helps to differentiate it from lighter ('light aquamarine') or darker ('dark aquamarine') variations, allowing for more precise communication of color in design and digital media. It evokes a sense of calm and freshness.
Code Snippets
/* Background */
.element {
background-color: #66DDAA;
}
/* Text */
.element {
color: #66DDAA;
}
/* Border */
.element {
border: 1px solid #66DDAA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#66DDAA,
#EFCBDA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#66DDAA,
#EFCBDA
);
}
// SCSS variable
$medium-aquamarine: #66DDAA;
// With RGB channels (useful for rgba() usage)
$medium-aquamarine-r: 102;
$medium-aquamarine-g: 221;
$medium-aquamarine-b: 170;
// Usage
.element {
background-color: $medium-aquamarine;
color: rgba($medium-aquamarine-r, $medium-aquamarine-g, $medium-aquamarine-b, 0.8);
}