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
Black Bean #3D0C02 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Black Bean #3D0C02 pairs with #02333D as its complementary color, and #023D0C and #0C023D in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}