Shamrock

HEX: #45CEA2 | Modern Palette

On White
1.98:1
FAIL
On Black
10.60:1
PASS

Color Specifications

HEX
#45CEA2
RGB
69, 206, 162
HSL
160°, 66% ,80%
CMYK
66.5, 0, 21.36, 19.22

About Shamrock

Shamrock (#45CEA2) is a color with RGB(69, 206, 162) and HSL(160.73°, 66.5%, 80.78%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #CE4571, which creates strong contrast. Its triadic palette includes #A245CE and #CEA245. The name comes from seamróg (Irish).

  • HEX: #45CEA2
  • RGB: 69, 206, 162
  • HSL: 160.73°, 66.5%, 80.78%
  • Mood: Playful
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #CE4571
  • Triadic colors: #A245CE, #CEA245
  • The name comes from seamróg (Irish).

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

Color Characteristics

Mood
Playful
Style
Cool

Accessibility Simulation

Deuteranopia #B4B4A4
Protanopia #C5C5A1
Tritanopia #56C9C9
Achromatopsia #B8B8B8

Frequently Asked Questions

Shamrock (#45CEA2) is a color with RGB(69, 206, 162) and HSL(160.73°, 66.5%, 80.78%).

#45CEA2 pairs strongly with #CE4571 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#45CEA2 is suitable for Text, Button, Background and works well with Cool styles.

#45CEA2 is commonly associated with Playful.

The name Shamrock is linked to seamróg from Irish, meaning young clover.

Name, History & Etymology

Origin Word seamróg
Meaning young clover
Language Irish
First Recorded Use 16th Century

History

The word 'shamrock' is an anglicization of the Irish word 'seamróg', which is the diminutive of 'seamair' (clover). It literally means 'young clover'. The shamrock has been a symbol of Ireland for centuries. Its most famous association is with Saint Patrick, who, according to legend, used the three leaves of the shamrock to explain the Holy Trinity (Father, Son, and Holy Spirit) to the pagan Irish. While the exact species of clover considered the 'true' shamrock is debated (common candidates include Trifolium dubium, Trifolium repens, and Medicago lupulina), its symbolic meaning remains consistent. It became a prominent emblem during the rise of Irish nationalism in the 18th and 19th centuries and is now widely recognized internationally as a symbol of Ireland, particularly associated with St. Patrick's Day.

First Recorded Use

The earliest known written use of 'shamrock' in English dates back to the late 16th century, though the plant itself and its significance in Ireland predate this considerably.

Cultural Associations

The shamrock is one of the most enduring and recognizable symbols of Ireland. It is worn on St. Patrick's Day, appears on national emblems, sports jerseys, and is a common motif in Irish art and design. Its connection to Saint Patrick makes it a symbol of both Irish heritage and Christianity. It is also often associated with good luck, similar to a four-leaf clover, though the traditional shamrock has three leaves.

Similar Named Colors

Eucalyptus #44D7A8 ΔE 2.20
Caribbean Green #00CC99 ΔE 2.59
Medium Aquamarine #66DDAA ΔE 4.54
Mountain Meadow #30BA8F ΔE 5.35

Code Snippets

/* Background */
.element {
    background-color: #45CEA2;
}

/* Text */
.element {
    color: #45CEA2;
}

/* Border */
.element {
    border: 1px solid #45CEA2;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #45CEA2,
        #EFADC2
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #45CEA2,
        #EFADC2
    );
}

// SCSS variable
$shamrock: #45CEA2;

// With RGB channels (useful for rgba() usage)
$shamrock-r: 69;
$shamrock-g: 206;
$shamrock-b: 162;

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