Zinnwaldite Brown
HEX: #2C1608 | Modern Palette
Color Specifications
#2C1608
44, 22, 8
23°, 81% ,17%
0, 50, 81.82, 82.75
About Zinnwaldite Brown
Zinnwaldite Brown (#2C1608) is a color with RGB(44, 22, 8) and HSL(23.33°, 81.82%, 17.25%). It is commonly associated with Bold moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #081E2C, which creates strong contrast. Its triadic palette includes #082C16 and #16082C. The name comes from Zinnwaldite Brown (English (compound)).
- HEX: #2C1608
- RGB: 44, 22, 8
- HSL: 23.33°, 81.82%, 17.25%
- Mood: Bold
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #081E2C
- Triadic colors: #082C16, #16082C
- The name comes from Zinnwaldite Brown (English (compound)).
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 #2C1608 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#1E1E07
#191908
#2D1515
#1B1B1B
Frequently Asked Questions
Name, History & Etymology
History
Zinnwaldite is a mineral in the mica group, specifically a lithium-iron-aluminum phyllosilicate. It typically presents in shades of brown, yellowish-brown, or reddish-brown, sometimes with a metallic luster. The color name 'Zinnwaldite Brown' directly references the characteristic appearance of this mineral. The mineral itself was first described in 1845 and named after Zinnwald (now Cínovec), a mining town on the border between Saxony, Germany, and Bohemia, Czech Republic, where it was found. The color name likely emerged as a descriptive term in geological contexts or among artists and pigment manufacturers seeking specific earthy brown tones.
First Recorded Use
Likely mid-to-late 20th century, as mineral names became more common for color descriptions, especially in art and geology.
Cultural Associations
The color 'Zinnwaldite Brown' evokes a sense of earthiness, natural minerals, and geological formations. It is a deep, rich brown, often with subtle undertones that might lean towards reddish or yellowish depending on the specific interpretation. It is not a widely recognized 'fashion' color but would be appreciated in fields like geology, mineralogy, and art for its specific reference to a natural pigment source. It might be used in palettes aiming for natural, rustic, or historical aesthetics.
Code Snippets
/* Background */
.element {
background-color: #2C1608;
}
/* Text */
.element {
color: #2C1608;
}
/* Border */
.element {
border: 1px solid #2C1608;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#2C1608,
#083450
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#2C1608,
#083450
);
}
// SCSS variable
$zinnwaldite-brown: #2C1608;
// With RGB channels (useful for rgba() usage)
$zinnwaldite-brown-r: 44;
$zinnwaldite-brown-g: 22;
$zinnwaldite-brown-b: 8;
// Usage
.element {
background-color: $zinnwaldite-brown;
color: rgba($zinnwaldite-brown-r, $zinnwaldite-brown-g, $zinnwaldite-brown-b, 0.8);
}