Yellow (Pantone)
HEX: #FEDF00 | Modern Palette
Color Specifications
#FEDF00
254, 223, 0
52°, 100% ,99%
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
Color Palettes
Yellow (Pantone) #FEDF00 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Yellow (Pantone) #FEDF00 pairs with #001FFE as its complementary color, and #00FEDF and #DF00FE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
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);
}