Medium Spring Bud

HEX: #C9DC87 | Modern Palette

On White
1.49:1
FAIL
On Black
14.07:1
PASS

Color Specifications

HEX
#C9DC87
RGB
201, 220, 135
HSL
73°, 54% ,69%
CMYK
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

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

Color Characteristics

Mood
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #D7D788
Protanopia #DADA87
Tritanopia #D2D4D4
Achromatopsia #D3D3D3

Frequently Asked Questions

Medium Spring Bud (#C9DC87) is a color with RGB(201, 220, 135) and HSL(73.4°, 54.8%, 69.6%).

#C9DC87 pairs strongly with #9A87DC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#C9DC87 is suitable for Text, Button, Logo and works well with Warm styles.

Similar Named Colors

June Bud #BDDA57 ΔE 6.39
Mindaro #E3F988 ΔE 7.19
Light Khaki #F0E68C ΔE 8.31
Pale Goldenrod #EEE8AA ΔE 8.42

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