Eucalyptus
HEX: #44D7A8 | Modern Palette
Color Specifications
#44D7A8
68, 215, 168
160°, 68% ,84%
68.37, 0, 21.86, 15.69
About Eucalyptus
Eucalyptus (#44D7A8) is a color with RGB(68, 215, 168) and HSL(160.82°, 68.37%, 84.31%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #D74473, which creates strong contrast. Its triadic palette includes #A844D7 and #D7A844. The name comes from εὐ- (eu-) + καλύπτω (kalyptō) (Ancient Greek).
- HEX: #44D7A8
- RGB: 68, 215, 168
- HSL: 160.82°, 68.37%, 84.31%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #D74473
- Triadic colors: #A844D7, #D7A844
- The name comes from εὐ- (eu-) + καλύπτω (kalyptō) (Ancient 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 #44D7A8 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BBBBAB
#CDCDA7
#57D2D2
#C0C0C0
Frequently Asked Questions
Name, History & Etymology
History
The name 'Eucalyptus' was coined by French botanist Charles Louis L'Héritier de Brutelle in 1788. He chose the name from Ancient Greek, combining 'eu-' (well) and 'kalyptō' (to cover), referring to the operculum that covers the developing flower bud. This operculum, a cap-like structure, is shed as the flower opens. The genus Eucalyptus is vast, comprising over 700 species, predominantly native to Australia. They were introduced to other parts of the world in the 19th century for various purposes, including timber, essential oil production, and as ornamental trees.
First Recorded Use
1788 (by Charles Louis L'Héritier de Brutelle)
Cultural Associations
Eucalyptus trees are iconic symbols of the Australian landscape and are deeply intertwined with Australian culture and ecology. They are the primary food source for koalas. Various species have been used by Indigenous Australians for millennia for medicinal purposes (e.g., treating fevers, respiratory issues), tools, and shelter. Globally, eucalyptus oil is widely used in aromatherapy, decongestants, and insect repellents. The trees are also known for their rapid growth and ability to adapt to various climates, leading to their widespread cultivation but also, in some regions, concerns about their invasive potential and water consumption.
Code Snippets
/* Background */
.element {
background-color: #44D7A8;
}
/* Text */
.element {
color: #44D7A8;
}
/* Border */
.element {
border: 1px solid #44D7A8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#44D7A8,
#F2BCCD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#44D7A8,
#F2BCCD
);
}
// SCSS variable
$eucalyptus: #44D7A8;
// With RGB channels (useful for rgba() usage)
$eucalyptus-r: 68;
$eucalyptus-g: 215;
$eucalyptus-b: 168;
// Usage
.element {
background-color: $eucalyptus;
color: rgba($eucalyptus-r, $eucalyptus-g, $eucalyptus-b, 0.8);
}