Myrtle

HEX: #21421E | Modern Palette

On White
11.27:1
PASS
On Black
1.86:1
FAIL

Color Specifications

HEX
#21421E
RGB
33, 66, 30
HSL
115°, 54% ,25%
CMYK
50, 0, 54.55, 74.12

About Myrtle

Myrtle (#21421E) is a color with RGB(33, 66, 30) and HSL(115°, 54.55%, 25.88%). It is commonly associated with Earthy moods. In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #3F1E42, which creates strong contrast. Its triadic palette includes #1E2142 and #421E21. The name comes from μύρτος (myrtos) (Greek).

  • HEX: #21421E
  • RGB: 33, 66, 30
  • HSL: 115°, 54.55%, 25.88%
  • Mood: Earthy
  • Style: Cool
  • Use case: Text, Button, Logo
  • Complementary color: #3F1E42
  • Triadic colors: #1E2142, #421E21
  • The name comes from μύρτος (myrtos) (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 #21421E from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Cool
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #3B3B1F
Protanopia #3F3F1E
Tritanopia #273F3F
Achromatopsia #3B3B3B

Frequently Asked Questions

Myrtle (#21421E) is a color with RGB(33, 66, 30) and HSL(115°, 54.55%, 25.88%).

#21421E pairs strongly with #3F1E42 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#21421E is suitable for Text, Button, Logo and works well with Cool styles.

#21421E is commonly associated with Earthy.

The name Myrtle is linked to μύρτος (myrtos) from Greek, meaning myrtle tree, myrtle berry.

Name, History & Etymology

Origin Word μύρτος (myrtos)
Meaning myrtle tree, myrtle berry
Language Greek
First Recorded Use Ancient

History

The myrtle plant has been significant in various cultures for millennia. In ancient Greece and Rome, it was sacred to Aphrodite/Venus, goddesses of love and beauty, and was associated with love, immortality, and honor. It was often used in wreaths for victors and brides. The name 'Myrtle' as a personal name emerged during the Victorian era's fascination with botany and the 'language of flowers,' where myrtle symbolized love and marriage. Its peak popularity in the United States was from the 1880s to the 1920s, after which its usage gradually declined. It is now considered a somewhat old-fashioned name.

First Recorded Use

The word 'myrtle' itself has ancient Greek origins. As a given name, 'Myrtle' became popular in English-speaking countries in the late 19th and early 20th centuries, following the trend of using floral names.

Cultural Associations

In Greek mythology, myrtle was the plant of Aphrodite. In Jewish tradition, myrtle is one of the four species used during the Sukkot holiday, symbolizing those who have good deeds but lack Torah knowledge. In some European folk traditions, myrtle was believed to bring good luck and fertility. The plant itself is an evergreen shrub known for its fragrant flowers and berries.

Similar Named Colors

Cal Poly Pomona Green #1E4D2B ΔE 4.29
UP Forest Green #014421 ΔE 4.64
British Racing Green #004225 ΔE 5.39
Phthalo Green #123524 ΔE 7.60

Code Snippets

/* Background */
.element {
    background-color: #21421E;
}

/* Text */
.element {
    color: #21421E;
}

/* Border */
.element {
    border: 1px solid #21421E;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #21421E,
        #601E66
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #21421E,
        #601E66
    );
}

// SCSS variable
$myrtle: #21421E;

// With RGB channels (useful for rgba() usage)
$myrtle-r: 33;
$myrtle-g: 66;
$myrtle-b: 30;

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