Malachite

HEX: #0BDA51 | Modern Palette

On White
1.88:1
FAIL
On Black
11.16:1
PASS

Color Specifications

HEX
#0BDA51
RGB
11, 218, 81
HSL
140°, 90% ,44%
CMYK
95, 0, 63, 15

About Malachite

Malachite (#0BDA51) is a color with RGB(11, 218, 81) and HSL(140.3°, 90.4%, 44.9%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #DA0B94, which creates strong contrast. Its triadic palette includes #510BDA and #DA510B. The name comes from μαλάχη (malakhē) (Greek).

  • HEX: #0BDA51
  • RGB: 11, 218, 81
  • HSL: 140.3°, 90.4%, 44.9%
  • Mood: Bold
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #DA0B94
  • Triadic colors: #510BDA, #DA510B
  • The name comes from μαλάχη (malakhē) (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 #0BDA51 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #BBBB58
Protanopia #CFCF4F
Tritanopia #53CFCF
Achromatopsia #BDBDBD

Frequently Asked Questions

Malachite (#0BDA51) is a color with RGB(11, 218, 81) and HSL(140.3°, 90.4%, 44.9%).

#0BDA51 pairs strongly with #DA0B94 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#0BDA51 is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#0BDA51 is commonly associated with Bold.

The name Malachite is linked to μαλάχη (malakhē) from Greek, meaning mallow (referring to the green color of mallow leaves).

Name, History & Etymology

Origin Word μαλάχη (malakhē)
Meaning mallow (referring to the green color of mallow leaves)
Language Greek
First Recorded Use Ancient

History

Malachite has a rich history, dating back to ancient Egypt where it was mined and used for jewelry, amulets, and as a pigment for eye makeup (kohl). The ancient Greeks and Romans also used malachite for jewelry, ornaments, and architectural decoration. Its name is believed to derive from the Greek word for 'mallow' due to its green color resembling the leaves of the mallow plant. Throughout history, it has been associated with protection, healing, and transformation. Major deposits were found in the Ural Mountains of Russia, leading to its extensive use in Russian decorative arts, particularly during the 18th and 19th centuries, for items like vases, tabletops, and even entire rooms (e.g., the Malachite Room in the Winter Palace).

First Recorded Use

Uncertain, but known and used since ancient Egyptian times, with the Greek term appearing in classical antiquity.

Cultural Associations

Culturally, malachite is often seen as a stone of transformation, protection, and healing. In ancient Egypt, it was associated with the goddess Hathor and was believed to protect against evil. In the Middle Ages, it was thought to protect children from falling and to cure various ailments. It is also considered a stone that encourages risk-taking and change, breaking unwanted ties and outworn patterns. In some traditions, it is believed to absorb negative energies and pollutants from the atmosphere and the body. Its distinctive banded patterns are often admired in decorative arts.

Similar Named Colors

Vivid Malachite #00CC33 ΔE 4.04
Lime Green #32CD32 ΔE 4.24
UFO Green #3CD070 ΔE 5.31
Pastel Green #77DD77 ΔE 6.21

Code Snippets

/* Background */
.element {
    background-color: #0BDA51;
}

/* Text */
.element {
    color: #0BDA51;
}

/* Border */
.element {
    border: 1px solid #0BDA51;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #0BDA51,
        #DA0B94
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #0BDA51,
        #DA0B94
    );
}

// SCSS variable
$malachite: #0BDA51;

// With RGB channels (useful for rgba() usage)
$malachite-r: 11;
$malachite-g: 218;
$malachite-b: 81;

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