Candy Apple Red
HEX: #FF0800 | Modern Palette
Color Specifications
#FF0800
255, 8, 0
1°, 100% ,50%
0, 97, 100, 0
About Candy Apple Red
Candy Apple Red (#FF0800) is a color with RGB(255, 8, 0) and HSL(1.9°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00F7FF, which creates strong contrast. Its triadic palette includes #00FF08 and #0800FF. The name comes from Candy Apple Red (English).
- HEX: #FF0800
- RGB: 255, 8, 0
- HSL: 1.9°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00F7FF
- Triadic colors: #00FF08, #0800FF
- The name comes from Candy Apple Red (English).
Live Components
Color Palettes
Candy Apple Red #FF0800 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
Candy Apple Red #FF0800 pairs with #00F7FF as its complementary color, and #00FF08 and #0800FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Candy Apple Red' emerged from the custom car and hot rod scene in the United States. The 'candy apple' painting technique involves applying a translucent colored coat over a metallic base coat (often silver or gold), which gives the color a deep, shimmering, and highly reflective quality, much like the glossy, translucent red coating on a traditional candy apple. This technique was popularized by customizers like Joe Bailon, who is often credited with developing or popularizing the 'candy' paint process in the 1950s. The color quickly became iconic, symbolizing speed, style, and rebellion.
First Recorded Use
The exact first documented use is difficult to pinpoint, but the term gained significant popularity in the 1950s and 1960s, particularly in automotive culture and custom painting.
Cultural Associations
Iconic in automotive culture, especially hot rods, custom cars, and motorcycles. Associated with rock and roll music and the rebellious youth culture of the mid-20th century. Frequently used in guitars (e.g., Fender Stratocaster), giving them a distinctive and classic look. Evokes a sense of nostalgia for mid-century American design and aesthetics. Often used to describe vibrant, attractive red objects beyond just cars, due to its strong visual association.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #FF0800;
}
/* Text */
.element {
color: #FF0800;
}
/* Border */
.element {
border: 1px solid #FF0800;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF0800,
#00F7FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF0800,
#00F7FF
);
}
// SCSS variable
$candy-apple-red: #FF0800;
// With RGB channels (useful for rgba() usage)
$candy-apple-red-r: 255;
$candy-apple-red-g: 8;
$candy-apple-red-b: 0;
// Usage
.element {
background-color: $candy-apple-red;
color: rgba($candy-apple-red-r, $candy-apple-red-g, $candy-apple-red-b, 0.8);
}