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
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 #FF0800 from deepest shade to lightest tint.
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);
}