Copper Red
HEX: #CB6D51 | Modern Palette
Color Specifications
#CB6D51
203, 109, 81
13°, 60% ,79%
0, 46.31, 60.1, 20.39
About Copper Red
Copper Red (#CB6D51) is a color with RGB(203, 109, 81) and HSL(13.77°, 60.1%, 79.61%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #51AFCB, which creates strong contrast. Its triadic palette includes #51CB6D and #6D51CB. The name comes from Copper Red (English).
- HEX: #CB6D51
- RGB: 203, 109, 81
- HSL: 13.77°, 60.1%, 79.61%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #51AFCB
- Triadic colors: #51CB6D, #6D51CB
- The name comes from Copper 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 #CB6D51 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'copper red' has a rich history, particularly in ceramics. Copper oxide, under specific reducing firing conditions, can produce vibrant red glazes. This technique was famously perfected in China during the Tang and Song dynasties, leading to highly prized 'sang-de-boeuf' (oxblood) and 'flambé' glazes. In Europe, the use of copper for red glazes and pigments also developed, though often independently. The specific hue #cb6d51 is a modern digital representation of this classic color, often associated with warmth, earthiness, and a touch of rustic elegance.
First Recorded Use
The term 'copper' for the metal dates back to Old English 'coper' and Latin 'cuprum'. As a color descriptor, 'copper' has been used for centuries. 'Copper Red' as a distinct color name, often referring to glazes or pigments, became more common in the late 18th and early 19th centuries, particularly with advancements in ceramic glazes and paint manufacturing.
Cultural Associations
In Chinese ceramics, copper red glazes like 'sang-de-boeuf' are highly valued and symbolize good fortune and prosperity. The color is often associated with autumn, harvest, and natural landscapes. It can evoke feelings of warmth, comfort, and tradition. In interior design, copper red is used to create inviting and cozy spaces.
Code Snippets
/* Background */
.element {
background-color: #CB6D51;
}
/* Text */
.element {
color: #CB6D51;
}
/* Border */
.element {
border: 1px solid #CB6D51;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CB6D51,
#ACDCEA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CB6D51,
#ACDCEA
);
}
// SCSS variable
$copper-red: #CB6D51;
// With RGB channels (useful for rgba() usage)
$copper-red-r: 203;
$copper-red-g: 109;
$copper-red-b: 81;
// Usage
.element {
background-color: $copper-red;
color: rgba($copper-red-r, $copper-red-g, $copper-red-b, 0.8);
}