June Bud

HEX: #BDDA57 | Modern Palette

On White
1.58:1
FAIL
On Black
13.33:1
PASS

Color Specifications

HEX
#BDDA57
RGB
189, 218, 87
HSL
73°, 63% ,59%
CMYK
13, 0, 60, 15

About June Bud

June Bud (#BDDA57) is a color with RGB(189, 218, 87) and HSL(73.3°, 63.9%, 59.8%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #7457DA, which creates strong contrast. Its triadic palette includes #57BDDA and #DA57BD. The name comes from June Bud (English).

  • HEX: #BDDA57
  • RGB: 189, 218, 87
  • HSL: 73.3°, 63.9%, 59.8%
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #7457DA
  • Triadic colors: #57BDDA, #DA57BD
  • The name comes from June 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 #BDDA57 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #D2D259
Protanopia #D7D757
Tritanopia #CACFCF
Achromatopsia #CECECE

Frequently Asked Questions

June Bud (#BDDA57) is a color with RGB(189, 218, 87) and HSL(73.3°, 63.9%, 59.8%).

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

#BDDA57 is suitable for Text, Button, Accent and works well with Warm styles.

The name June Bud is linked to June Bud from English, meaning A term referring to a specific type of peach that ripens early in the season, typically in June..

Name, History & Etymology

Origin Word June Bud
Meaning A term referring to a specific type of peach that ripens early in the season, typically in June.
Language English
First Recorded Use Early 20th Century

History

The 'June Bud' is not a botanical classification but rather a common name for several early-ripening peach varieties. The term emphasizes its early harvest time, making it desirable for growers wanting to get fruit to market ahead of the main peach season. Historically, early ripening was a significant advantage for market competition. The development of such varieties involved selective breeding over many years.

First Recorded Use

The exact first recorded use is difficult to pinpoint, but the term became common in agricultural and horticultural contexts in the early 1900s as specific peach varieties were developed and marketed.

Cultural Associations

The 'June Bud' peach, like many early-season fruits, symbolizes the beginning of summer and the abundance of the harvest season. It's often associated with fresh eating, simple desserts, and the anticipation of warmer weather. In regions where peaches are a significant crop, the arrival of 'June Buds' can be a minor local event, signaling the start of the peach season.

Similar Named Colors

Vivid Lime Green #A6D608 ΔE 5.22
Android Green #A4C639 ΔE 5.39
Inchworm #B2EC5D ΔE 5.62
Yellow Green #9ACD32 ΔE 5.68

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #BDDA57,
        #7457DA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #BDDA57,
        #7457DA
    );
}

// SCSS variable
$june-bud: #BDDA57;

// With RGB channels (useful for rgba() usage)
$june-bud-r: 189;
$june-bud-g: 218;
$june-bud-b: 87;

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