Pale Spring Bud
HEX: #ECEBBD | Modern Palette
Color Specifications
#ECEBBD
236, 235, 189
58°, 55% ,83%
0, 0, 20, 7
About Pale Spring Bud
Pale Spring Bud (#ECEBBD) is a color with RGB(236, 235, 189) and HSL(58.7°, 55.3%, 83.3%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #BDBEEC, which creates strong contrast. Its triadic palette includes #BDECEB and #EBBDEC. The name comes from Pale Spring Bud (English).
- HEX: #ECEBBD
- RGB: 236, 235, 189
- HSL: 58.7°, 55.3%, 83.3%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #BDBEEC
- Triadic colors: #BDECEB, #EBBDEC
- The name comes from Pale Spring Bud (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 #ECEBBD from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#EBEBBD
#EBEBBD
#F1E6E6
#E8E8E8
Frequently Asked Questions
Name, History & Etymology
History
While the concept of light green colors associated with spring is ancient, the precise naming 'Pale Spring Bud' is a modern invention. It fits into a trend of highly descriptive color names that became popular in the 20th and 21st centuries to differentiate subtle shades and evoke specific imagery. It's not a traditional pigment name like 'ochre' or 'ultramarine' but rather a poetic descriptor.
First Recorded Use
The specific color name 'Pale Spring Bud' is a descriptive, modern coinage, likely originating in the context of color systems (e.g., paint companies, web design, fashion) rather than having a long historical literary or artistic tradition. Its first precise use is difficult to pinpoint without specific brand or publication data, but the descriptive nature suggests a relatively recent origin.
Cultural Associations
The color evokes feelings of renewal, freshness, new beginnings, and the gentle awakening of nature after winter. It is often associated with growth, hope, and tranquility. In fashion and interior design, it can be used to create light, airy, and natural aesthetics. It's a common color in spring collections and themes.
Code Snippets
/* Background */
.element {
background-color: #ECEBBD;
}
/* Text */
.element {
color: #ECEBBD;
}
/* Border */
.element {
border: 1px solid #ECEBBD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#ECEBBD,
#BDBEEC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#ECEBBD,
#BDBEEC
);
}
// SCSS variable
$pale-spring-bud: #ECEBBD;
// With RGB channels (useful for rgba() usage)
$pale-spring-bud-r: 236;
$pale-spring-bud-g: 235;
$pale-spring-bud-b: 189;
// Usage
.element {
background-color: $pale-spring-bud;
color: rgba($pale-spring-bud-r, $pale-spring-bud-g, $pale-spring-bud-b, 0.8);
}