Dark Candy Apple Red
HEX: #A40000 | Modern Palette
Color Specifications
#A40000
164, 0, 0
0°, 100% ,32%
0, 100, 100, 36
About Dark Candy Apple Red
Dark Candy Apple Red (#A40000) is a color with RGB(164, 0, 0) and HSL(0°, 100%, 32.2%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00A4A4, which creates strong contrast. Its triadic palette includes #00A400 and #0000A4.
- HEX: #A40000
- RGB: 164, 0, 0
- HSL: 0°, 100%, 32.2%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00A4A4
- Triadic colors: #00A400, #0000A4
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 #A40000 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #A40000;
}
/* Text */
.element {
color: #A40000;
}
/* Border */
.element {
border: 1px solid #A40000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A40000,
#00A4A4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A40000,
#00A4A4
);
}
// SCSS variable
$dark-candy-apple-red: #A40000;
// With RGB channels (useful for rgba() usage)
$dark-candy-apple-red-r: 164;
$dark-candy-apple-red-g: 0;
$dark-candy-apple-red-b: 0;
// Usage
.element {
background-color: $dark-candy-apple-red;
color: rgba($dark-candy-apple-red-r, $dark-candy-apple-red-g, $dark-candy-apple-red-b, 0.8);
}