Yellow (Crayola)
HEX: #FCE883 | Modern Palette
Color Specifications
#FCE883
252, 232, 131
50°, 48% ,98%
0, 7.94, 48.02, 1.18
About Yellow (Crayola)
Yellow (Crayola) (#FCE883) is a color with RGB(252, 232, 131) and HSL(50.08°, 48.02%, 98.82%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #8397FC, which creates strong contrast. Its triadic palette includes #83FCE8 and #E883FC.
- HEX: #FCE883
- RGB: 252, 232, 131
- HSL: 50.08°, 48.02%, 98.82%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #8397FC
- Triadic colors: #83FCE8, #E883FC
Live Components
Color Palettes
Yellow (Crayola) #FCE883 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 (Crayola) #FCE883 pairs with #8397FC as its complementary color, and #83FCE8 and #E883FC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#EEEE82
#EAEA83
#FFDEDE
#E7E7E7
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #FCE883;
}
/* Text */
.element {
color: #FCE883;
}
/* Border */
.element {
border: 1px solid #FCE883;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FCE883,
#FBFBFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FCE883,
#FBFBFD
);
}
// SCSS variable
$yellow-(crayola): #FCE883;
// With RGB channels (useful for rgba() usage)
$yellow-(crayola)-r: 252;
$yellow-(crayola)-g: 232;
$yellow-(crayola)-b: 131;
// Usage
.element {
background-color: $yellow-(crayola);
color: rgba($yellow-(crayola)-r, $yellow-(crayola)-g, $yellow-(crayola)-b, 0.8);
}