Medium Spring Bud
HEX: #C9DC87 | Modern Palette
Color Specifications
#C9DC87
201, 220, 135
73°, 54% ,69%
9, 0, 39, 14
About Medium Spring Bud
Medium Spring Bud (#C9DC87) is a color with RGB(201, 220, 135) and HSL(73.4°, 54.8%, 69.6%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #9A87DC, which creates strong contrast. Its triadic palette includes #87C9DC and #DC87C9.
- HEX: #C9DC87
- RGB: 201, 220, 135
- HSL: 73.4°, 54.8%, 69.6%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #9A87DC
- Triadic colors: #87C9DC, #DC87C9
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 #C9DC87 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #C9DC87;
}
/* Text */
.element {
color: #C9DC87;
}
/* Border */
.element {
border: 1px solid #C9DC87;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C9DC87,
#9A87DC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C9DC87,
#9A87DC
);
}
// SCSS variable
$medium-spring-bud: #C9DC87;
// With RGB channels (useful for rgba() usage)
$medium-spring-bud-r: 201;
$medium-spring-bud-g: 220;
$medium-spring-bud-b: 135;
// Usage
.element {
background-color: $medium-spring-bud;
color: rgba($medium-spring-bud-r, $medium-spring-bud-g, $medium-spring-bud-b, 0.8);
}