Black Bean
HEX: #3D0C02 | Modern Palette
Color Specifications
#3D0C02
61, 12, 2
10°, 96% ,23%
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
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 #3D0C02 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#222200
#171703
#3D0B0B
#1D1D1D
Frequently Asked Questions
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);
}