June Bud
HEX: #BDDA57 | Modern Palette
Color Specifications
#BDDA57
189, 218, 87
73°, 63% ,59%
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
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 #BDDA57 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}