Lava
HEX: #CF1020 | Modern Palette
Color Specifications
#CF1020
207, 16, 32
355°, 85% ,43%
0, 92, 85, 19
About Lava
Lava (#CF1020) is a color with RGB(207, 16, 32) and HSL(355°, 85.7%, 43.7%). 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 #10CFBF, which creates strong contrast. Its triadic palette includes #20CF10 and #1020CF. The name comes from lava (Italian).
- HEX: #CF1020
- RGB: 207, 16, 32
- HSL: 355°, 85.7%, 43.7%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #10CFBF
- Triadic colors: #20CF10, #1020CF
- The name comes from lava (Italian).
Live Components
Color Palettes
Lava #CF1020 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
Lava #CF1020 pairs with #10CFBF as its complementary color, and #20CF10 and #1020CF 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 word 'lava' was adopted into English from Italian. Its original Italian meaning referred to a 'wash' or 'torrent' of water, often after heavy rain, flowing down a mountainside. This meaning was then applied by analogy to the molten rock flowing from volcanoes, likely due to the similar visual phenomenon of a fluid mass moving down a slope. The earliest recorded use in English specifically referring to volcanic material dates to the 1690s, following observations of eruptions, particularly from Mount Vesuvius and Etna.
First Recorded Use
1690s (English)
Cultural Associations
Lava is a powerful symbol in many cultures, representing creation and destruction, fertility and danger. Volcanic regions often have rich mythologies associated with lava flows, sometimes seen as the breath of gods or the tears of giants. In modern culture, 'lava' is widely recognized and used in metaphors for intense heat, unstoppable force, or a dangerous, flowing substance (e.g., 'lava lamp', 'the floor is lava' game). Its distinctive color (#cf1020, a deep reddish-orange) is often associated with danger, heat, and volcanic activity.
Code Snippets
/* Background */
.element {
background-color: #CF1020;
}
/* Text */
.element {
color: #CF1020;
}
/* Border */
.element {
border: 1px solid #CF1020;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CF1020,
#10CFBF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CF1020,
#10CFBF
);
}
// SCSS variable
$lava: #CF1020;
// With RGB channels (useful for rgba() usage)
$lava-r: 207;
$lava-g: 16;
$lava-b: 32;
// Usage
.element {
background-color: $lava;
color: rgba($lava-r, $lava-g, $lava-b, 0.8);
}