Pastel Yellow
HEX: #FDFD96 | Modern Palette
Color Specifications
#FDFD96
253, 253, 150
60°, 96% ,79%
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
Color Palettes
Pastel Yellow #FDFD96 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
Pastel Yellow #FDFD96 pairs with #9696FD as its complementary color, and #96FDFD and #FD96FD 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: #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);
}