Cyber Yellow
HEX: #FFD300 | Modern Palette
Color Specifications
#FFD300
255, 211, 0
49°, 100% ,100%
0, 17.25, 100, 0
About Cyber Yellow
Cyber Yellow (#FFD300) is a color with RGB(255, 211, 0) and HSL(49.65°, 100%, 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 #002CFF, which creates strong contrast. Its triadic palette includes #00FFD3 and #D300FF.
- HEX: #FFD300
- RGB: 255, 211, 0
- HSL: 49.65°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #002CFF
- Triadic colors: #00FFD3, #D300FF
Live Components
Color Palettes
Cyber Yellow #FFD300 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
Cyber Yellow #FFD300 pairs with #002CFF as its complementary color, and #00FFD3 and #D300FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FFD300;
}
/* Text */
.element {
color: #FFD300;
}
/* Border */
.element {
border: 1px solid #FFD300;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFD300,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFD300,
#FFFFFF
);
}
// SCSS variable
$cyber-yellow: #FFD300;
// With RGB channels (useful for rgba() usage)
$cyber-yellow-r: 255;
$cyber-yellow-g: 211;
$cyber-yellow-b: 0;
// Usage
.element {
background-color: $cyber-yellow;
color: rgba($cyber-yellow-r, $cyber-yellow-g, $cyber-yellow-b, 0.8);
}