Turquoise Green

HEX: #A0D6B4 | Modern Palette

On White
1.64:1
FAIL
On Black
12.77:1
PASS

Color Specifications

HEX
#A0D6B4
RGB
160, 214, 180
HSL
142°, 39% ,73%
CMYK
25, 0, 16, 16

About Turquoise Green

Turquoise Green (#A0D6B4) is a color with RGB(160, 214, 180) and HSL(142.2°, 39.7%, 73.3%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #D6A0C2, which creates strong contrast. Its triadic palette includes #B4A0D6 and #D6B4A0. The name comes from turquoise (French).

  • HEX: #A0D6B4
  • RGB: 160, 214, 180
  • HSL: 142.2°, 39.7%, 73.3%
  • Mood: Calm
  • Style: Cool
  • Use case: Text, Logo, Print
  • Complementary color: #D6A0C2
  • Triadic colors: #B4A0D6, #D6B4A0
  • The name comes from turquoise (French).

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

Color Characteristics

Mood
Calm
Style
Cool
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #C8C8B5
Protanopia #D1D1B4
Tritanopia #A6D2D2
Achromatopsia #CACACA

Frequently Asked Questions

Turquoise Green (#A0D6B4) is a color with RGB(160, 214, 180) and HSL(142.2°, 39.7%, 73.3%).

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

#A0D6B4 is suitable for Text, Logo, Print and works well with Cool styles.

#A0D6B4 is commonly associated with Calm.

The name Turquoise Green is linked to turquoise from French, meaning The word 'turquoise' is derived from the Old French 'turqueise', meaning 'Turkish stone', reflecting the trade route through Turkey by which the mineral first arrived in Europe..

Name, History & Etymology

Origin Word turquoise
Meaning The word 'turquoise' is derived from the Old French 'turqueise', meaning 'Turkish stone', reflecting the trade route through Turkey by which the mineral first arrived in Europe.
Language French
First Recorded Use Late 19th Century

History

The mineral turquoise has been prized for millennia, with ancient Egyptians, Persians, and Native Americans using it in jewelry and ornamentation. The color 'turquoise' itself became a recognized descriptor in English by the 1570s. 'Turquoise Green' likely developed as a more precise descriptor to differentiate greener shades from bluer ones, reflecting an increasing sophistication in color nomenclature during the industrial age. This distinction became more common with the advent of standardized color systems and commercial dye production.

First Recorded Use

While 'turquoise' as a color name dates back to the 16th century, the specific compound term 'Turquoise Green' emerged later, likely in the late 19th or early 20th century, to describe a greener variant of the traditional turquoise hue.

Cultural Associations

Turquoise, in general, is associated with protection, wisdom, and tranquility across many cultures. Its green-leaning variations, like Turquoise Green, often evoke natural elements such as tropical waters or lush foliage, contributing to its use in design for calming and refreshing aesthetics. The color is frequently seen in art deco designs and mid-century modern interiors.

Similar Named Colors

Eton Blue #96C8A2 ΔE 3.79
Celadon #ACE1AF ΔE 4.91
Moss Green #ADDFAD ΔE 4.95
Teal Deer #99E6B3 ΔE 5.56

Code Snippets

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

/* Text */
.element {
    color: #A0D6B4;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A0D6B4,
        #D6A0C2
    );
}

// SCSS variable
$turquoise-green: #A0D6B4;

// With RGB channels (useful for rgba() usage)
$turquoise-green-r: 160;
$turquoise-green-g: 214;
$turquoise-green-b: 180;

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