Skip to content

Tailwind CSS v4 default palette

Tailwind teal-600: #009689

In Tailwind CSS v4, teal-600 is defined as --color-teal-600: oklch(60% 0.118 184.704), which is #009689 in hex and rgb(0, 150, 137): a medium, moderately saturated cyan. In Tailwind v3, teal-600 was #0D9488.

teal-600#009689

In OKLCH, teal-600 has a lightness of 60.0%, chroma 0.118 and hue 184.7°.

This OKLCH value lies outside sRGB. The hex #009689 is the sRGB fallback from the CSS Color 4 gamut mapping algorithm; on Display P3 screens browsers show a more saturated color, close to color(display-p3 0.2071 0.5796 0.5367).

In v3, teal-600 was #0D9488. The v4 value is ΔE OK 1.4 away, below the point where most people can tell them apart; v4 is more saturated.

Tailwind teal is a blue-green between emerald and cyan, often used as a calm brand accent.

Color codes for teal-600

Color codes for teal-600
Tailwind v4 token--color-teal-600
OKLCH (source value)oklch(60% 0.118 184.704)
HEX#009689
RGBrgb(0, 150, 137)
HSLhsl(175, 100%, 29%)
HWBhwb(175 0% 41%)
CMYK (naive, no ICC profile)cmyk(100%, 0%, 9%, 41%)
Decimal38,537
Display P3color(display-p3 0.2071 0.5796 0.5367)
Tailwind v3 hex#0D9488
Utility classesbg-teal-600, text-teal-600, border-teal-600

Tailwind teal scale

Contrast and accessibility

On teal-600, black text has a contrast ratio of 5.72:1 and passes AA for normal text; white text reaches 3.66:1.

WCAG 2.2 contrast ratios (success criteria 1.4.3 and 1.4.6: AA needs 4.5:1 for normal text and 3:1 for large text, AAA needs 7:1 and 4.5:1). APCA Lc is the lightness contrast from the APCA-W3 0.0.98G model proposed for WCAG 3; a higher absolute value is more readable, and Lc 75 is its suggested minimum for body text.

Contrast and accessibility
PairRatioAAAA largeAAAAAA largeAPCA Lc
Black text on teal-6005.72:1PassPassFailPass40.4
White text on teal-6003.66:1FailPassFailFail−69.1
Teal-600 text on white3.66:1FailPassFailFail63.7
Teal-600 text on black5.72:1PassPassFailPass−38.0

Tints and shades

Each step mixes var(--color-teal-600) with white (tints) or black (shades) in gamma-encoded sRGB, the same result as color-mix(in srgb, var(--color-teal-600), white 25%) in CSS.

Tints (mixed with white)

  1. 5%
    #0d9b8f
  2. 15%
    #26a69b
  3. 25%
    #40b0a7
  4. 35%
    #59bbb2
  5. 45%
    #73c5be
  6. 55%
    #8cd0ca
  7. 65%
    #a6dad6
  8. 75%
    #bfe5e2
  9. 85%
    #d9efed
  10. 95%
    #f2faf9

Shades (mixed with black)

  1. 5%
    #008f82
  2. 15%
    #008074
  3. 25%
    #007167
  4. 35%
    #006259
  5. 45%
    #00534b
  6. 55%
    #00443e
  7. 65%
    #003530
  8. 75%
    #002622
  9. 85%
    #001715
  10. 95%
    #000807

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, teal-600's complementary color is #BA6077 (close to indianred), its analogous colors are #3B9560 and #0091AC, and its triadic partners are #906DB9 and #B06F26. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#ba6077
Analogous−30°, +30°#3b9560#0091ac
Triadic+120°, +240°#906db9#b06f26
Split-complementary+150°, +210°#ab639c#bc644e

Computed in OKLCH: the hue is rotated by 180° (complementary), ±30° (analogous), ±120° (triadic) and 180° ±30° (split-complementary) while lightness and chroma stay fixed. Results that fall outside sRGB are brought back with the CSS Color 4 gamut mapping algorithm. Because this uses OKLCH, the values differ from tools that rotate hue in HSL, but every color keeps the same perceived lightness.

Warm or cool?

Tailwind teal-600 is a cool color: its hue is 175° on the HSL wheel, in the green, blue and violet range that is conventionally called cool.

Nearest named and Tailwind colors

Distance is ΔE OK, the Euclidean distance in OKLab multiplied by 100. Values under about 2 are hard to tell apart side by side.

Nearest CSS named colors

Nearest CSS named colors
ColorHEXΔE OK
darkcyan#008b8b3.6
teal#0080806.5
seagreen#2e8b576.8

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
emerald-600#0099665.6
cyan-600#0092b87.8
teal-700#00786f9.2

Code snippets

Tailwind CSS
<div class="bg-teal-600 text-black">...</div>
<p class="text-teal-600 border-teal-600">...</p>
CSS
.element {
  color: var(--color-teal-600);
  background-color: oklch(60% 0.118 184.704);
  border-color: #009689;
  outline-color: rgb(0 150 137);
}
SwiftUI
import SwiftUI

extension Color {
  static let teal600 = Color(red: 0.000, green: 0.588, blue: 0.537)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

val Teal600 = Color(0xFF009689)
Flutter
import 'package:flutter/material.dart';

const teal600 = Color(0xFF009689);
Android XML
<!-- res/values/colors.xml -->
<color name="teal_600">#009689</color>

Frequently asked questions

What is the hex code for Tailwind teal-600?
In Tailwind CSS v4, teal-600 is oklch(60% 0.118 184.704), which converts to #009689 (rgb(0, 150, 137)) in sRGB after gamut mapping, because the OKLCH value is outside sRGB. In Tailwind v3 the same name was #0D9488.
What is the difference between teal-600 in Tailwind v3 and v4?
v3 used the hex #0D9488; v4 redefined the palette in OKLCH as oklch(60% 0.118 184.704). In v3, teal-600 was #0D9488. The v4 value is ΔE OK 1.4 away, below the point where most people can tell them apart; v4 is more saturated.
How do I use teal-600 in plain CSS?
Tailwind v4 defines every palette color as a theme variable, so in CSS you write var(--color-teal-600). By default Tailwind only emits the variables your project uses; @theme static emits all of them.
Can you use white text on teal-600?
White text on teal-600 has a contrast ratio of 3.66:1, which passes AA only for large text (24 px, or 18.66 px bold, and up) under WCAG 2.2. Black text reaches 5.72:1 and passes AA for normal text but not AAA. In APCA terms that is Lc −69.1 for white and Lc 40.4 for black.
Which CSS named color is closest to teal-600?
The closest is darkcyan (#008B8B) at ΔE OK 3.6, followed by teal and seagreen.

Last reviewed by Arielton Oberek.