Myrtle
HEX: #21421E | Modern Palette
Color Specifications
#21421E
33, 66, 30
115°, 54% ,25%
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
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 #21421E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}