Roman Silver
HEX: #838996 | Modern Palette
Color Specifications
#838996
131, 137, 150
221°, 12% ,58%
12.67, 8.67, 0, 41.18
About Roman Silver
Roman Silver (#838996) is a color with RGB(131, 137, 150) and HSL(221.05°, 12.67%, 58.82%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #969083, which creates strong contrast. Its triadic palette includes #968389 and #899683. The name comes from Argentum Romanum (Latin).
- HEX: #838996
- RGB: 131, 137, 150
- HSL: 221.05°, 12.67%, 58.82%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #969083
- Triadic colors: #968389, #899683
- The name comes from Argentum Romanum (Latin).
Live Components
Color Palettes
Roman Silver #838996 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
Roman Silver #838996 pairs with #969083 as its complementary color, and #968389 and #899683 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Roman silver refers to the silver used by the ancient Romans for coinage, jewelry, tableware, and other artifacts. Initially, the Romans used silver primarily for coinage, with the denarius becoming a widely circulated silver coin. The purity of Roman silver varied significantly throughout history. Early denarii were nearly pure silver, but debasement became common during times of economic stress, particularly from the 3rd century CE onwards, where the silver content could drop dramatically. Silver was sourced from various mines across the Roman Empire, including Spain (e.g., Carthago Nova), Britain, and the Balkans. The production and use of silver were central to the Roman economy and imperial power.
First Recorded Use
Circa 3rd Century BCE
Cultural Associations
Silver held significant cultural and economic importance in Roman society. It was a symbol of wealth and status, with elaborate silver dinnerware (argentum escarium) and personal adornments being highly prized by the elite. Silver votive offerings were also common in religious practices. The widespread use of silver coinage facilitated trade and taxation across the vast Roman Empire. The decline in silver purity in coinage is often seen as a symptom and contributor to the economic instability of the late Roman Empire.
Code Snippets
/* Background */
.element {
background-color: #838996;
}
/* Text */
.element {
color: #838996;
}
/* Border */
.element {
border: 1px solid #838996;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#838996,
#A39B89
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#838996,
#A39B89
);
}
// SCSS variable
$roman-silver: #838996;
// With RGB channels (useful for rgba() usage)
$roman-silver-r: 131;
$roman-silver-g: 137;
$roman-silver-b: 150;
// Usage
.element {
background-color: $roman-silver;
color: rgba($roman-silver-r, $roman-silver-g, $roman-silver-b, 0.8);
}