Copper
HEX: #B87333 | Modern Palette
Color Specifications
#B87333
184, 115, 51
28°, 56% ,46%
0, 38, 72, 28
About Copper
Copper (#B87333) is a color with RGB(184, 115, 51) and HSL(28.9°, 56.6%, 46.1%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #3378B8, which creates strong contrast. Its triadic palette includes #33B873 and #7333B8. The name comes from cuprum (Latin).
- HEX: #B87333
- RGB: 184, 115, 51
- HSL: 28.9°, 56.6%, 46.1%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #3378B8
- Triadic colors: #33B873, #7333B8
- The name comes from cuprum (Latin).
Live Components
Color Palettes
Copper #B87333 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
Copper #B87333 pairs with #3378B8 as its complementary color, and #33B873 and #7333B8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Copper has been used by humans for at least 10,000 years, making it one of the first metals ever utilized. Its malleability and ductility allowed early humans to fashion tools, weapons, and ornaments. The name 'copper' derives from the Latin 'cuprum', which itself comes from 'Cyprium aes', meaning 'metal of Cyprus', as the island of Cyprus was a major source of copper in ancient times. The Bronze Age, a significant period in human history, was defined by the widespread use of bronze, an alloy primarily of copper and tin. Copper's excellent electrical conductivity led to its extensive use in wiring and electronics starting in the 19th century.
First Recorded Use
Circa 3000 BC (as a distinct metal, though used earlier)
Cultural Associations
Associated with the goddess Aphrodite/Venus in Roman mythology, due to its origin from Cyprus (Aphrodite's birthplace). Often symbolizes love, balance, and artistic creativity. Used in various ancient cultures for coinage, jewelry, and religious artifacts. In alchemy, copper was represented by the symbol of Venus (♀).
Code Snippets
/* Background */
.element {
background-color: #B87333;
}
/* Text */
.element {
color: #B87333;
}
/* Border */
.element {
border: 1px solid #B87333;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B87333,
#3378B8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B87333,
#3378B8
);
}
// SCSS variable
$copper: #B87333;
// With RGB channels (useful for rgba() usage)
$copper-r: 184;
$copper-g: 115;
$copper-b: 51;
// Usage
.element {
background-color: $copper;
color: rgba($copper-r, $copper-g, $copper-b, 0.8);
}