Pastel Yellow

HEX: #FDFD96 | Modern Palette

On White
1.07:1
FAIL
On Black
19.67:1
PASS

Color Specifications

HEX
#FDFD96
RGB
253, 253, 150
HSL
60°, 96% ,79%
CMYK
0, 0, 41, 1

About Pastel Yellow

Pastel Yellow (#FDFD96) is a color with RGB(253, 253, 150) and HSL(60°, 96.3%, 79%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #9696FD, which creates strong contrast. Its triadic palette includes #96FDFD and #FD96FD.

  • HEX: #FDFD96
  • RGB: 253, 253, 150
  • HSL: 60°, 96.3%, 79%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #9696FD
  • Triadic colors: #96FDFD, #FD96FD

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

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #FDFD96
Protanopia #FDFD96
Tritanopia #FFF3F3
Achromatopsia #F7F7F7

Frequently Asked Questions

Pastel Yellow (#FDFD96) is a color with RGB(253, 253, 150) and HSL(60°, 96.3%, 79%).

#FDFD96 pairs strongly with #9696FD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FDFD96 is commonly associated with Bold, Playful.

Similar Named Colors

Canary #FFFF99 ΔE 0.44
Mindaro #E3F988 ΔE 5.22
Flavescent #F7E98E ΔE 5.28
Light Khaki #F0E68C ΔE 5.29

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FDFD96,
        #9696FD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FDFD96,
        #9696FD
    );
}

// SCSS variable
$pastel-yellow: #FDFD96;

// With RGB channels (useful for rgba() usage)
$pastel-yellow-r: 253;
$pastel-yellow-g: 253;
$pastel-yellow-b: 150;

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