Eucalyptus

HEX: #44D7A8 | Modern Palette

On White
1.82:1
FAIL
On Black
11.53:1
PASS

Color Specifications

HEX
#44D7A8
RGB
68, 215, 168
HSL
160°, 68% ,84%
CMYK
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

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 #44D7A8 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Cool

Accessibility Simulation

Deuteranopia #BBBBAB
Protanopia #CDCDA7
Tritanopia #57D2D2
Achromatopsia #C0C0C0

Frequently Asked Questions

Eucalyptus (#44D7A8) is a color with RGB(68, 215, 168) and HSL(160.82°, 68.37%, 84.31%).

#44D7A8 pairs strongly with #D74473 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#44D7A8 is suitable for Text, Button, Background and works well with Cool styles.

#44D7A8 is commonly associated with Playful.

The name Eucalyptus is linked to εὐ- (eu-) + καλύπτω (kalyptō) from Ancient Greek, meaning well- (eu-) + to cover (kalyptō).

Name, History & Etymology

Origin Word εὐ- (eu-) + καλύπτω (kalyptō)
Meaning well- (eu-) + to cover (kalyptō)
Language Ancient Greek
First Recorded Use Late 18th Century

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.

Similar Named Colors

Shamrock #45CEA2 ΔE 2.20
Medium Aquamarine #66DDAA ΔE 3.05
Caribbean Green #00CC99 ΔE 3.57
Mountain Meadow #30BA8F ΔE 7.45

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);
}