Light Yellow
HEX: #FFFFED | Modern Palette
Color Specifications
#FFFFED
255, 255, 237
60°, 100% ,96%
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
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 #FFFFED from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
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);
}