Gray Asparagus
HEX: #465945 | Modern Palette
Color Specifications
#465945
70, 89, 69
117°, 22% ,34%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}