Gray Asparagus

HEX: #465945 | Modern Palette

On White
7.57:1
PASS
On Black
2.78:1
FAIL

Color Specifications

HEX
#465945
RGB
70, 89, 69
HSL
117°, 22% ,34%
CMYK
21.35, 0, 22.47, 65.1

About Gray Asparagus

Gray Asparagus (#465945) is a color with RGB(70, 89, 69) and HSL(117°, 22.47%, 34.9%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #584559, which creates strong contrast. Its triadic palette includes #454659 and #594546. The name comes from Gray Asparagus (English).

  • HEX: #465945
  • RGB: 70, 89, 69
  • HSL: 117°, 22.47%, 34.9%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #584559
  • Triadic colors: #454659, #594546
  • The name comes from Gray Asparagus (English).

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

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool

Accessibility Simulation

Deuteranopia #545445
Protanopia #575745
Tritanopia #495757
Achromatopsia #545454

Frequently Asked Questions

Gray Asparagus (#465945) is a color with RGB(70, 89, 69) and HSL(117°, 22.47%, 34.9%).

#465945 pairs strongly with #584559 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#465945 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#465945 is commonly associated with Calm, Earthy.

The name Gray Asparagus is linked to Gray Asparagus from English, meaning A specific cultivar or type of asparagus characterized by a grayish-green hue, often with purple tips, distinct from the more common green or white varieties..

Name, History & Etymology

Origin Word Gray Asparagus
Meaning A specific cultivar or type of asparagus characterized by a grayish-green hue, often with purple tips, distinct from the more common green or white varieties.
Language English
First Recorded Use Early 20th Century

History

Asparagus (Asparagus officinalis) has been cultivated for over 2,000 years, originating in the eastern Mediterranean. Historically, green and white asparagus were the most common. White asparagus is simply green asparagus grown without light (blanched). 'Gray asparagus' is not a blanched product but a distinct genetic variety. Its grayish-green color is natural to the plant. The development and popularization of specific 'gray' varieties, such as certain heirloom types or modern hybrids bred for unique characteristics, gained traction in the 20th century as culinary diversity and specific aesthetic qualities became more valued in produce markets. It's often prized for a slightly milder, nuttier flavor compared to standard green asparagus.

First Recorded Use

The term 'gray asparagus' likely emerged as specific cultivars with this coloration became more recognized and cultivated, distinguishing them from other types. While asparagus cultivation dates back millennia, the precise naming of 'gray asparagus' as a distinct type would coincide with more refined horticultural practices and market differentiation. Early seed catalogs and agricultural texts from the early 1900s begin to list and describe various asparagus types with more specific color descriptors.

Cultural Associations

While not as universally recognized as green or white asparagus, gray asparagus is appreciated by gourmets and chefs for its unique color and subtle flavor profile. It can be found in specialty markets and farmers' markets, particularly in regions known for diverse agricultural products. Its distinct appearance makes it a visually appealing ingredient in dishes, often used to add color contrast. It is sometimes associated with artisanal or heirloom produce movements.

Similar Named Colors

Feldgrau #4D5D53 ΔE 4.90
Rifle Green #444C38 ΔE 5.75
Ebony #555D50 ΔE 5.95
Rifle Green #414833 ΔE 6.99

Code Snippets

/* Background */
.element {
    background-color: #465945;
}

/* Text */
.element {
    color: #465945;
}

/* Border */
.element {
    border: 1px solid #465945;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #465945,
        #6B456D
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #465945,
        #6B456D
    );
}

// SCSS variable
$gray-asparagus: #465945;

// With RGB channels (useful for rgba() usage)
$gray-asparagus-r: 70;
$gray-asparagus-g: 89;
$gray-asparagus-b: 69;

// Usage
.element {
    background-color: $gray-asparagus;
    color: rgba($gray-asparagus-r, $gray-asparagus-g, $gray-asparagus-b, 0.8);
}