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
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.
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);
}