Yellow (Pantone)

HEX: #FEDF00 | Modern Palette

On White
1.33:1
FAIL
On Black
15.77:1
PASS

Color Specifications

HEX
#FEDF00
RGB
254, 223, 0
HSL
52°, 100% ,99%
CMYK
0, 12.2, 100, 0.39

About Yellow (Pantone)

Yellow (Pantone) (#FEDF00) is a color with RGB(254, 223, 0) and HSL(52.68°, 100%, 99.61%). 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 #001FFE, which creates strong contrast. Its triadic palette includes #00FEDF and #DF00FE.

  • HEX: #FEDF00
  • RGB: 254, 223, 0
  • HSL: 52.68°, 100%, 99.61%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #001FFE
  • Triadic colors: #00FEDF, #DF00FE

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E9E900
Protanopia #E3E304
Tritanopia #FFD2D2
Achromatopsia #DFDFDF

Frequently Asked Questions

Yellow (Pantone) (#FEDF00) is a color with RGB(254, 223, 0) and HSL(52.68°, 100%, 99.61%).

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

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

#FEDF00 is commonly associated with Playful.

Similar Named Colors

Golden Yellow #FFDF00 ΔE 0.24
Vivid Yellow #FFE302 ΔE 1.07
Banana Yellow #FFE135 ΔE 1.75
School Bus Yellow #FFD800 ΔE 2.37

Code Snippets

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

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

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

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

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

// SCSS variable
$yellow-(pantone): #FEDF00;

// With RGB channels (useful for rgba() usage)
$yellow-(pantone)-r: 254;
$yellow-(pantone)-g: 223;
$yellow-(pantone)-b: 0;

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