Bud Green
HEX: #7BB661 | Modern Palette
Color Specifications
#7BB661
123, 182, 97
101°, 46% ,71%
32.42, 0, 46.7, 28.63
About Bud Green
Bud Green (#7BB661) is a color with RGB(123, 182, 97) and HSL(101.65°, 46.7%, 71.37%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #9C61B6, which creates strong contrast. Its triadic palette includes #617BB6 and #B6617B. The name comes from Bud Green (English).
- HEX: #7BB661
- RGB: 123, 182, 97
- HSL: 101.65°, 46.7%, 71.37%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #9C61B6
- Triadic colors: #617BB6, #B6617B
- The name comes from Bud Green (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 #7BB661 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
While the concept of a 'budding green' or 'spring green' has been used to describe colors in nature and art for centuries, the precise naming 'Bud Green' as a distinct, codified color name is a more modern development. It's often associated with web colors or specific design software palettes. The hexadecimal code #7bb661 is a specific digital representation of this color.
First Recorded Use
The specific color name 'Bud Green' likely emerged with the proliferation of digital color systems and standardized color palettes (e.g., X11, web colors) in the late 20th century, though the visual concept of a 'bud green' existed much earlier.
Cultural Associations
Green colors, in general, are widely associated with nature, growth, renewal, spring, fertility, and freshness across many cultures. 'Bud Green' specifically evokes the very beginning of this cycle, suggesting youth, new beginnings, and potential. It's a vibrant, somewhat muted, natural green.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #7BB661;
}
/* Text */
.element {
color: #7BB661;
}
/* Border */
.element {
border: 1px solid #7BB661;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7BB661,
#C394D8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7BB661,
#C394D8
);
}
// SCSS variable
$bud-green: #7BB661;
// With RGB channels (useful for rgba() usage)
$bud-green-r: 123;
$bud-green-g: 182;
$bud-green-b: 97;
// Usage
.element {
background-color: $bud-green;
color: rgba($bud-green-r, $bud-green-g, $bud-green-b, 0.8);
}