Black Bean

HEX: #3D0C02 | Modern Palette

On White
16.77:1
PASS
On Black
1.25:1
FAIL

Color Specifications

HEX
#3D0C02
RGB
61, 12, 2
HSL
10°, 96% ,23%
CMYK
0, 80.33, 96.72, 76.08

About Black Bean

Black Bean (#3D0C02) is a color with RGB(61, 12, 2) and HSL(10.17°, 96.72%, 23.92%). It is commonly associated with Bold moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #02333D, which creates strong contrast. Its triadic palette includes #023D0C and #0C023D.

  • HEX: #3D0C02
  • RGB: 61, 12, 2
  • HSL: 10.17°, 96.72%, 23.92%
  • Mood: Bold
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #02333D
  • Triadic colors: #023D0C, #0C023D

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

Color Characteristics

Mood
Bold
Style
Warm

Accessibility Simulation

Deuteranopia #222200
Protanopia #171703
Tritanopia #3D0B0B
Achromatopsia #1D1D1D

Frequently Asked Questions

Black Bean (#3D0C02) is a color with RGB(61, 12, 2) and HSL(10.17°, 96.72%, 23.92%).

#3D0C02 pairs strongly with #02333D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#3D0C02 is suitable for Text, Button, Background and works well with Warm styles.

#3D0C02 is commonly associated with Bold.

Similar Named Colors

Bulgarian Rose #480607 ΔE 3.58
Dark Sienna #3C1414 ΔE 4.11
French Puce #4E1609 ΔE 4.63
Seal Brown #321414 ΔE 6.62

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #3D0C02,
        #026478
    );
}

// SCSS variable
$black-bean: #3D0C02;

// With RGB channels (useful for rgba() usage)
$black-bean-r: 61;
$black-bean-g: 12;
$black-bean-b: 2;

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