Teal Deer
HEX: #99E6B3 | Modern Palette
Color Specifications
#99E6B3
153, 230, 179
140°, 33% ,90%
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
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 #99E6B3 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#D3D3B5
#DFDFB3
#A3E0E0
#D5D5D5
Frequently Asked Questions
Name, History & Etymology
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.
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);
}