Asparagus

HEX: #87A96B | Modern Palette

On White
2.65:1
FAIL
On Black
7.92:1
PASS

Color Specifications

HEX
#87A96B
RGB
135, 169, 107
HSL
92°, 36% ,66%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #87A96B from deepest shade to lightest tint.

Color Characteristics

Mood
Calm
Style
Cool
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #A0A06C
Protanopia #A6A66B
Tritanopia #8FA3A3
Achromatopsia #9F9F9F

Frequently Asked Questions

Asparagus (#87A96B) is a color with RGB(135, 169, 107) and HSL(92.9°, 36.69%, 66.27%).

#87A96B pairs strongly with #8D6BA9 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#87A96B is suitable for Text, Logo, Print and works well with Cool styles.

#87A96B is commonly associated with Calm.

The name Asparagus is linked to ἀσπάραγος (asparagos) from Ancient Greek, meaning sprout, shoot.

Name, History & Etymology

Origin Word ἀσπάραγος (asparagos)
Meaning sprout, shoot
Language Ancient Greek
First Recorded Use Antiquity

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.

Similar Named Colors

Olivine #9AB973 ΔE 5.07
Bud Green #7BB661 ΔE 5.72
Moss Green #8A9A5B ΔE 5.83
Dollar Bill #85BB65 ΔE 6.27

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);
}