Vivid Yellow
HEX: #FFE302 | Modern Palette
Color Specifications
#FFE302
255, 227, 2
53°, 99% ,100%
0, 10.98, 99.22, 0
About Vivid Yellow
Vivid Yellow (#FFE302) is a color with RGB(255, 227, 2) and HSL(53.36°, 99.22%, 100%). 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 #021EFF, which creates strong contrast. Its triadic palette includes #02FFE3 and #E302FF.
- HEX: #FFE302
- RGB: 255, 227, 2
- HSL: 53.36°, 99.22%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #021EFF
- Triadic colors: #02FFE3, #E302FF
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 #FFE302 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FFE302;
}
/* Text */
.element {
color: #FFE302;
}
/* Border */
.element {
border: 1px solid #FFE302;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFE302,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFE302,
#FFFFFF
);
}
// SCSS variable
$vivid-yellow: #FFE302;
// With RGB channels (useful for rgba() usage)
$vivid-yellow-r: 255;
$vivid-yellow-g: 227;
$vivid-yellow-b: 2;
// Usage
.element {
background-color: $vivid-yellow;
color: rgba($vivid-yellow-r, $vivid-yellow-g, $vivid-yellow-b, 0.8);
}