Spring Bud

HEX: #A7FC00 | Modern Palette

On White
1.27:1
FAIL
On Black
16.57:1
PASS

Color Specifications

HEX
#A7FC00
RGB
167, 252, 0
HSL
80°, 100% ,49%
CMYK
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

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

Color Characteristics

Mood
Bold
Style
Vivid
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #E8E81E
Protanopia #F5F500
Tritanopia #BEEDED
Achromatopsia #E4E4E4

Frequently Asked Questions

Spring Bud (#A7FC00) is a color with RGB(167, 252, 0) and HSL(80.2°, 100%, 49.4%).

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

#A7FC00 is suitable for Text, Button, Accent and works well with Vivid styles.

#A7FC00 is commonly associated with Bold.

The name Spring Bud is linked to Spring Bud from English, meaning A bud that appears in spring; metaphorically, new growth or potential..

Name, History & Etymology

Origin Word Spring Bud
Meaning A bud that appears in spring; metaphorically, new growth or potential.
Language English
First Recorded Use Late 20th Century (as a program name)

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.

Similar Named Colors

Green Yellow #ADFF2F ΔE 1.35
French Lime #9EFD38 ΔE 2.73
Lime #BFFF00 ΔE 3.14
Chartreuse #7FFF00 ΔE 4.35

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