Light Yellow

HEX: #FFFFED | Modern Palette

On White
1.01:1
FAIL
On Black
20.78:1
PASS

Color Specifications

HEX
#FFFFED
RGB
255, 255, 237
HSL
60°, 100% ,96%
CMYK
0, 0, 7, 0

About Light Yellow

Light Yellow (#FFFFED) is a color with RGB(255, 255, 237) and HSL(60°, 100%, 96.5%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #EDEDFF, which creates strong contrast. Its triadic palette includes #EDFFFF and #FFEDFF.

  • HEX: #FFFFED
  • RGB: 255, 255, 237
  • HSL: 60°, 100%, 96.5%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #EDEDFF
  • Triadic colors: #EDFFFF, #FFEDFF

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #FFFFED
Protanopia #FFFFED
Tritanopia #FFFDFD
Achromatopsia #FEFEFE

Frequently Asked Questions

Light Yellow (#FFFFED) is a color with RGB(255, 255, 237) and HSL(60°, 100%, 96.5%).

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

#FFFFED is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FFFFED is commonly associated with Playful.

Similar Named Colors

Ivory #FFFFF0 ΔE 1.15
Beige #F5F5DC ΔE 3.29
Cosmic Latte #FFF8E7 ΔE 3.56
Cornsilk #FFF8DC ΔE 4.31

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFFFED,
        #EDEDFF
    );
}

// SCSS variable
$light-yellow: #FFFFED;

// With RGB channels (useful for rgba() usage)
$light-yellow-r: 255;
$light-yellow-g: 255;
$light-yellow-b: 237;

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