Spring Bud
HEX: #A7FC00 | Modern Palette
Color Specifications
#A7FC00
167, 252, 0
80°, 100% ,49%
34, 0, 100, 1
About Spring Bud
Spring Bud (#A7FC00) is a color with RGB(167, 252, 0) and HSL(80.2°, 100%, 49.4%). It is commonly associated with Bold moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #5500FC, which creates strong contrast. Its triadic palette includes #00A7FC and #FC00A7. The name comes from Spring Bud (English).
- HEX: #A7FC00
- RGB: 167, 252, 0
- HSL: 80.2°, 100%, 49.4%
- Mood: Bold
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #5500FC
- Triadic colors: #00A7FC, #FC00A7
- The name comes from 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 #A7FC00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Spring Bud' gained significant recognition as the name of a large-scale educational assistance program in China. Launched in 1989 by the China Children and Teenagers' Fund (CCTF), the 'Project Hope - Spring Bud Program' (or simply 'Spring Bud Program') aimed to help girls from impoverished rural areas return to or stay in school. Before this, 'spring bud' was a general descriptive term in English for new plant growth in spring. The program's name was chosen to symbolize the potential and future of these young girls, much like a bud holds the promise of a flower or fruit.
First Recorded Use
1989
Cultural Associations
In Chinese culture, spring is often associated with renewal, hope, and new beginnings. The imagery of a 'bud' (芽 - yá) further emphasizes nascent potential and the early stages of growth. The Spring Bud Program became a widely recognized philanthropic initiative within China and internationally, symbolizing efforts to promote gender equality in education and alleviate poverty. It resonated deeply with traditional values emphasizing education and the importance of nurturing the younger generation.
Code Snippets
/* Background */
.element {
background-color: #A7FC00;
}
/* Text */
.element {
color: #A7FC00;
}
/* Border */
.element {
border: 1px solid #A7FC00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A7FC00,
#5500FC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A7FC00,
#5500FC
);
}
// SCSS variable
$spring-bud: #A7FC00;
// With RGB channels (useful for rgba() usage)
$spring-bud-r: 167;
$spring-bud-g: 252;
$spring-bud-b: 0;
// Usage
.element {
background-color: $spring-bud;
color: rgba($spring-bud-r, $spring-bud-g, $spring-bud-b, 0.8);
}