Yellow (Munsell)
HEX: #EFCC00 | Modern Palette
Color Specifications
#EFCC00
239, 204, 0
51°, 100% ,93%
0, 14.64, 100, 6.27
About Yellow (Munsell)
Yellow (Munsell) (#EFCC00) is a color with RGB(239, 204, 0) and HSL(51.21°, 100%, 93.73%). 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 #0023EF, which creates strong contrast. Its triadic palette includes #00EFCC and #CC00EF.
- HEX: #EFCC00
- RGB: 239, 204, 0
- HSL: 51.21°, 100%, 93.73%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0023EF
- Triadic colors: #00EFCC, #CC00EF
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 #EFCC00 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #EFCC00;
}
/* Text */
.element {
color: #EFCC00;
}
/* Border */
.element {
border: 1px solid #EFCC00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EFCC00,
#DFE4FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EFCC00,
#DFE4FF
);
}
// SCSS variable
$yellow-(munsell): #EFCC00;
// With RGB channels (useful for rgba() usage)
$yellow-(munsell)-r: 239;
$yellow-(munsell)-g: 204;
$yellow-(munsell)-b: 0;
// Usage
.element {
background-color: $yellow-(munsell);
color: rgba($yellow-(munsell)-r, $yellow-(munsell)-g, $yellow-(munsell)-b, 0.8);
}