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
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 #FCE883 from deepest shade to lightest tint.
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);
}