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
Light Yellow #FFFFED 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
Light Yellow #FFFFED pairs with #EDEDFF as its complementary color, and #EDFFFF and #FFEDFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}