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