Yellow (RYB)
HEX: #FEFE33 | Modern Palette
Color Specifications
#FEFE33
254, 254, 51
60°, 79% ,99%
0, 0, 79.92, 0.39
About Yellow (RYB)
Yellow (RYB) (#FEFE33) is a color with RGB(254, 254, 51) and HSL(60°, 79.92%, 99.61%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3333FE, which creates strong contrast. Its triadic palette includes #33FEFE and #FE33FE.
- HEX: #FEFE33
- RGB: 254, 254, 51
- HSL: 60°, 79.92%, 99.61%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #3333FE
- Triadic colors: #33FEFE, #FE33FE
Live Components
Color Palettes
Yellow (RYB) #FEFE33 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 (RYB) #FEFE33 pairs with #3333FE as its complementary color, and #33FEFE and #FE33FE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#FEFE33
#FEFE33
#FFF0F0
#F6F6F6
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FEFE33;
}
/* Text */
.element {
color: #FEFE33;
}
/* Border */
.element {
border: 1px solid #FEFE33;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FEFE33,
#FDFDFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FEFE33,
#FDFDFF
);
}
// SCSS variable
$yellow-(ryb): #FEFE33;
// With RGB channels (useful for rgba() usage)
$yellow-(ryb)-r: 254;
$yellow-(ryb)-g: 254;
$yellow-(ryb)-b: 51;
// Usage
.element {
background-color: $yellow-(ryb);
color: rgba($yellow-(ryb)-r, $yellow-(ryb)-g, $yellow-(ryb)-b, 0.8);
}