Manatee
HEX: #979AAA | Modern Palette
Color Specifications
#979AAA
151, 154, 170
230°, 11% ,66%
11.18, 9.41, 0, 33.33
About Manatee
Manatee (#979AAA) is a color with RGB(151, 154, 170) and HSL(230.53°, 11.18%, 66.67%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #AAA797, which creates strong contrast. Its triadic palette includes #AA979A and #9AAA97. The name comes from manatí (Spanish).
- HEX: #979AAA
- RGB: 151, 154, 170
- HSL: 230.53°, 11.18%, 66.67%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #AAA797
- Triadic colors: #AA979A, #9AAA97
- The name comes from manatí (Spanish).
Live Components
Color Palettes
Manatee #979AAA 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
Manatee #979AAA pairs with #AAA797 as its complementary color, and #AA979A and #9AAA97 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
European explorers encountered manatees in the Caribbean and Americas. The Spanish adopted a local indigenous term, 'manatí', to describe these creatures. English speakers then borrowed the term from Spanish. Early descriptions often focused on their aquatic nature and gentle demeanor. There were also historical myths and legends associating manatees with mermaids, likely due to their human-like upper bodies and the way they nurse their young.
First Recorded Use
The word 'manatee' entered English through Spanish 'manatí', which itself is believed to have originated from a Carib language (possibly Taino) word 'manattí' meaning 'breast' or 'udder', referring to the animal's mammary glands.
Cultural Associations
Manatees hold cultural significance in various regions where they are found, particularly in Florida (USA) and parts of the Caribbean and South America. They are often seen as symbols of peace and gentleness. In some indigenous cultures, they may have played a role in folklore or spiritual beliefs. Today, they are iconic symbols of wildlife conservation efforts, especially in Florida, where they are a protected species and a major tourist attraction.
Code Snippets
/* Background */
.element {
background-color: #979AAA;
}
/* Text */
.element {
color: #979AAA;
}
/* Border */
.element {
border: 1px solid #979AAA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#979AAA,
#B4B1A1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#979AAA,
#B4B1A1
);
}
// SCSS variable
$manatee: #979AAA;
// With RGB channels (useful for rgba() usage)
$manatee-r: 151;
$manatee-g: 154;
$manatee-b: 170;
// Usage
.element {
background-color: $manatee;
color: rgba($manatee-r, $manatee-g, $manatee-b, 0.8);
}