Teal Deer

HEX: #99E6B3 | Modern Palette

On White
1.47:1
FAIL
On Black
14.32:1
PASS

Color Specifications

HEX
#99E6B3
RGB
153, 230, 179
HSL
140°, 33% ,90%
CMYK
33.48, 0, 22.17, 9.8

About Teal Deer

Teal Deer (#99E6B3) is a color with RGB(153, 230, 179) and HSL(140.26°, 33.48%, 90.2%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #E699CC, which creates strong contrast. Its triadic palette includes #B399E6 and #E6B399. The name comes from TL;DR (English).

  • HEX: #99E6B3
  • RGB: 153, 230, 179
  • HSL: 140.26°, 33.48%, 90.2%
  • Style: Pastel, Cool
  • Use case: Text, Background, Print
  • Complementary color: #E699CC
  • Triadic colors: #B399E6, #E6B399
  • The name comes from TL;DR (English).

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

Color Characteristics

Mood
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #D3D3B5
Protanopia #DFDFB3
Tritanopia #A3E0E0
Achromatopsia #D5D5D5

Frequently Asked Questions

Teal Deer (#99E6B3) is a color with RGB(153, 230, 179) and HSL(140.26°, 33.48%, 90.2%).

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

#99E6B3 is suitable for Text, Background, Print and works well with Pastel, Cool styles.

The name Teal Deer is linked to TL;DR from English, meaning Too Long; Didn't Read.

Name, History & Etymology

Origin Word TL;DR
Meaning Too Long; Didn't Read
Language English
First Recorded Use Early 2000s

History

The phrase 'TL;DR' originated in internet forums and Usenet groups as early as the 1990s, signifying a summary of a lengthy post for those who didn't want to read the whole thing. 'Teal Deer' is a phonetic corruption of 'TL;DR', used humorously to refer to the same concept. It gained popularity as an internet meme, often accompanied by images of teal-colored deer, further cementing its place in internet culture.

First Recorded Use

The exact first use of 'Teal Deer' as a phonetic corruption is hard to pinpoint, but it emerged as a meme and common internet slang in the early 2000s, specifically as a humorous way to refer to 'TL;DR'.

Cultural Associations

Teal Deer is a prime example of internet slang evolving through phonetic puns and memes. It reflects a culture of brevity and humor online, where users often seek quick summaries and appreciate clever wordplay. It's commonly used in online discussions, social media, and forums to introduce a concise summary of a longer text.

Similar Named Colors

Celadon #ACE1AF ΔE 3.79
Moss Green #ADDFAD ΔE 4.37
Granny Smith Apple #A8E4A0 ΔE 5.29
Turquoise Green #A0D6B4 ΔE 5.56

Code Snippets

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

/* Text */
.element {
    color: #99E6B3;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #99E6B3,
        #EEDEE9
    );
}

// SCSS variable
$teal-deer: #99E6B3;

// With RGB channels (useful for rgba() usage)
$teal-deer-r: 153;
$teal-deer-g: 230;
$teal-deer-b: 179;

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