Asparagus
HEX: #87A96B | Modern Palette
Color Specifications
#87A96B
135, 169, 107
92°, 36% ,66%
20.12, 0, 36.69, 33.73
About Asparagus
Asparagus (#87A96B) is a color with RGB(135, 169, 107) and HSL(92.9°, 36.69%, 66.27%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #8D6BA9, which creates strong contrast. Its triadic palette includes #6B87A9 and #A96B87. The name comes from ἀσπάραγος (asparagos) (Ancient Greek).
- HEX: #87A96B
- RGB: 135, 169, 107
- HSL: 92.9°, 36.69%, 66.27%
- Mood: Calm
- Style: Cool
- Use case: Text, Logo, Print
- Complementary color: #8D6BA9
- Triadic colors: #6B87A9, #A96B87
- The name comes from ἀσπάραγος (asparagos) (Ancient Greek).
Live Components
Color Palettes
Asparagus #87A96B 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
Asparagus #87A96B pairs with #8D6BA9 as its complementary color, and #6B87A9 and #A96B87 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Asparagus has a long history of cultivation and consumption, dating back over 2,000 years. Ancient Egyptians, Greeks, and Romans all enjoyed asparagus for its taste and perceived medicinal properties. The Romans were particularly fond of it and even had methods for freezing it in the Alps for later consumption. It spread throughout Europe during the Middle Ages and was brought to North America by European colonists. The modern English word 'asparagus' comes directly from the Latin, which itself is a transliteration of the Greek. For a period, it was sometimes mistakenly called 'sparrowgrass' in English due to folk etymology.
First Recorded Use
The term 'asparagos' was used in Ancient Greek to refer to the edible shoot of the plant. It was later adopted into Latin as 'asparagus'.
Cultural Associations
Asparagus is often associated with spring, as it is one of the first vegetables to emerge after winter. It is a popular ingredient in many cuisines worldwide, from European dishes like asparagus soup and roasted asparagus to Asian stir-fries. In some cultures, it is considered a delicacy. Its unique flavor and texture make it a versatile vegetable. It is also known for causing a distinctive odor in urine for some individuals, a phenomenon that has been a subject of scientific and anecdotal interest.
Code Snippets
/* Background */
.element {
background-color: #87A96B;
}
/* Text */
.element {
color: #87A96B;
}
/* Border */
.element {
border: 1px solid #87A96B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#87A96B,
#AC89C9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#87A96B,
#AC89C9
);
}
// SCSS variable
$asparagus: #87A96B;
// With RGB channels (useful for rgba() usage)
$asparagus-r: 135;
$asparagus-g: 169;
$asparagus-b: 107;
// Usage
.element {
background-color: $asparagus;
color: rgba($asparagus-r, $asparagus-g, $asparagus-b, 0.8);
}