Zinnwaldite Brown

HEX: #2C1608 | Modern Palette

On White
17.14:1
PASS
On Black
1.23:1
FAIL

Color Specifications

HEX
#2C1608
RGB
44, 22, 8
HSL
23°, 81% ,17%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Bold
Style
Warm

Accessibility Simulation

Deuteranopia #1E1E07
Protanopia #191908
Tritanopia #2D1515
Achromatopsia #1B1B1B

Frequently Asked Questions

Zinnwaldite Brown (#2C1608) is a color with RGB(44, 22, 8) and HSL(23.33°, 81.82%, 17.25%).

#2C1608 pairs strongly with #081E2C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#2C1608 is suitable for Text, Button, Background and works well with Warm styles.

#2C1608 is commonly associated with Bold.

The name Zinnwaldite Brown is linked to Zinnwaldite Brown from English (compound), meaning A brown color resembling the mineral Zinnwaldite..

Name, History & Etymology

Origin Word Zinnwaldite Brown
Meaning A brown color resembling the mineral Zinnwaldite.
Language English (compound)
First Recorded Use 20th Century

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.

Similar Named Colors

Bistre #3D2B1F ΔE 6.83
Seal Brown #321414 ΔE 6.93
Dark Sienna #3C1414 ΔE 8.73
Licorice #1A1110 ΔE 9.04

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);
}