Cadmium Red
HEX: #E30022 | Modern Palette
Color Specifications
#E30022
227, 0, 34
351°, 100% ,44%
0, 100, 85, 11
About Cadmium Red
Cadmium Red (#E30022) is a color with RGB(227, 0, 34) and HSL(351°, 100%, 44.5%). 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 #00E3C1, which creates strong contrast. Its triadic palette includes #22E300 and #0022E3. The name comes from Cadmium Red (English).
- HEX: #E30022
- RGB: 227, 0, 34
- HSL: 351°, 100%, 44.5%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00E3C1
- Triadic colors: #22E300, #0022E3
- The name comes from Cadmium 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 #E30022 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Cadmium pigments were first discovered in the early 19th century, but cadmium red specifically was developed and introduced to artists in 1907. It quickly gained popularity due to its vibrant, opaque, and lightfast qualities, offering a significant improvement over many earlier red pigments which were prone to fading or darkening. Its introduction marked a new era for artists seeking stable and brilliant reds.
First Recorded Use
1907
Cultural Associations
Cadmium Red is widely recognized in the art world as a staple pigment, particularly in oil and acrylic painting. Its intensity and permanence have made it a favorite for capturing vibrant reds in landscapes, portraits, and abstract works. It is often associated with modern and contemporary art due to its relatively recent widespread adoption compared to older pigments. Due to its cadmium content, there are environmental and health considerations regarding its disposal and handling, leading some artists and manufacturers to seek less toxic alternatives, though its unique properties keep it in demand.
Code Snippets
/* Background */
.element {
background-color: #E30022;
}
/* Text */
.element {
color: #E30022;
}
/* Border */
.element {
border: 1px solid #E30022;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E30022,
#00E3C1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E30022,
#00E3C1
);
}
// SCSS variable
$cadmium-red: #E30022;
// With RGB channels (useful for rgba() usage)
$cadmium-red-r: 227;
$cadmium-red-g: 0;
$cadmium-red-b: 34;
// Usage
.element {
background-color: $cadmium-red;
color: rgba($cadmium-red-r, $cadmium-red-g, $cadmium-red-b, 0.8);
}