Arsenic

HEX: #3B444B | Modern Palette

On White
9.93:1
PASS
On Black
2.11:1
FAIL

Color Specifications

HEX
#3B444B
RGB
59, 68, 75
HSL
206°, 21% ,29%
CMYK
21.33, 9.33, 0, 70.59

About Arsenic

Arsenic (#3B444B) is a color with RGB(59, 68, 75) and HSL(206.25°, 21.33%, 29.41%). It is commonly associated with Calm, Luxury moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #4B423B, which creates strong contrast. Its triadic palette includes #4B3B44 and #444B3B. The name comes from ἀρσενικόν (arsenikón) (Greek).

  • HEX: #3B444B
  • RGB: 59, 68, 75
  • HSL: 206.25°, 21.33%, 29.41%
  • Mood: Calm, Luxury
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #4B423B
  • Triadic colors: #4B3B44, #444B3B
  • The name comes from ἀρσενικόν (arsenikón) (Greek).

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 #3B444B from deepest shade to lightest tint.

Color Characteristics

Mood
Calm Luxury
Style
Muted Cool

Accessibility Simulation

Deuteranopia #42424B
Protanopia #43434B
Tritanopia #3A4545
Achromatopsia #434343

Frequently Asked Questions

Arsenic (#3B444B) is a color with RGB(59, 68, 75) and HSL(206.25°, 21.33%, 29.41%).

#3B444B pairs strongly with #4B423B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#3B444B is suitable for Text, Background, Border and works well with Muted, Cool styles.

#3B444B is commonly associated with Calm, Luxury.

The name Arsenic is linked to ἀρσενικόν (arsenikón) from Greek, meaning yellow orpiment (arsenic trisulfide), potent, masculine.

Name, History & Etymology

Origin Word ἀρσενικόν (arsenikón)
Meaning yellow orpiment (arsenic trisulfide), potent, masculine
Language Greek
First Recorded Use Ancient

History

The word 'arsenic' traces its roots back to ancient Greek. The Greek 'arsenikón' referred specifically to orpiment (arsenic trisulfide), a bright yellow mineral that was used as a pigment and was known to be poisonous. The 'arsen-' part of the word is thought to be related to the Greek 'arsēn' (ἄρσην), meaning 'male' or 'potent,' possibly due to its strong and toxic nature. From Greek, the term passed into Latin as 'arsenicum.' Medieval alchemists and physicians continued to use variations of this term. The modern English 'arsenic' evolved from these Latin and Old French forms. Historically, arsenic compounds have been used for various purposes, including pigments, medicines (despite their toxicity), and poisons. Its elemental form was isolated and studied more systematically during the Renaissance.

First Recorded Use

The term 'arsenikon' was used by ancient Greek philosophers and scientists like Theophrastus (c. 371 – c. 287 BC) to refer to arsenic sulfides, particularly orpiment, which was known for its yellow color and toxicity.

Cultural Associations

Arsenic has a long and complex cultural history, often associated with poison and death due to its high toxicity. It was famously known as 'the king of poisons and the poison of kings' because it was difficult to detect in food or drink before modern forensic science. In some ancient cultures, arsenic compounds were used in traditional medicine, often with dangerous results. Its distinctive yellow and red sulfide forms (orpiment and realgar) were also valued as pigments in art throughout history, from ancient Egypt to medieval manuscripts and Renaissance paintings. The color 'Arsenic' (#3b444b) itself is a dark, muted grey, which might subtly allude to the element's darker, more sinister associations rather than its bright mineral forms.

Similar Named Colors

Charcoal #36454F ΔE 2.41
Outer Space #414A4C ΔE 3.65
Onyx #353839 ΔE 5.39
Jet #343434 ΔE 7.24

Code Snippets

/* Background */
.element {
    background-color: #3B444B;
}

/* Text */
.element {
    color: #3B444B;
}

/* Border */
.element {
    border: 1px solid #3B444B;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #3B444B,
        #5B493B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #3B444B,
        #5B493B
    );
}

// SCSS variable
$arsenic: #3B444B;

// With RGB channels (useful for rgba() usage)
$arsenic-r: 59;
$arsenic-g: 68;
$arsenic-b: 75;

// Usage
.element {
    background-color: $arsenic;
    color: rgba($arsenic-r, $arsenic-g, $arsenic-b, 0.8);
}