TwoColorPalette

Teal and Gold color palette

nearest CSS color: teal · 0.018
nearest CSS color: goldenrod · 0.025

Wedding stationery leans on this combination heavily, and the reason shows up the moment you set them side by side. The teal (#0E7C86) reads as a deep, slightly blue green, cool and saturated without going tropical. The gold (#D4AF37) is warm and metallic, the shade most people picture when they hear the word.

At 2.35 to 1 and 114 degrees apart on the wheel, the gold does not pop sharply, and that softness is the appeal. It suits interiors with velvet, brass, and dark wood. For branding, use teal for large areas and gold for accents, type details, or foil. Add an off-white or deep navy when you need real legibility.

See Teal and Gold in use

Background ⇄ tap a mockup to swap colors
Teal&Gold
together with their families
SEPTEMBER 14
Wedding invitation
Interior design
Build
better
Start free
Marketing hero
AURELIAbotanical face serum30 ml
Product label
Logo lockup
TG
Poster / type

Teal Tailwind scale (50-900)

Gold Tailwind scale (50-900)

Teal to Gold blend

A continuous interpolation from Teal to Gold, sampled into the 10 steps below. Tap any swatch to copy its hex.

Why Teal and Gold blend best in OKLab

The same two colors blended three ways. This site uses OKLab, which keeps the blend smooth and evenly lit. The other two are shown so you can see what to avoid: sRGB darkens and muddies the middle, and HSL detours through colors that are not in your palette.

OKLabsmooth, evenly lit (used here)
sRGBmuddy, darker middle
HSLdetours through other hues

Accessibility

AA large ✗AA normal ✗AAA ✗

Do not place Teal text on Gold (or the reverse) for body copy. For readable text, pair a dark scale step such as teal-800 or gold-900 with a light one like gold-50.

Contrast pairing grid

Rows are Teal steps, columns are Gold steps. Each mark is a Teal step shown on a Gold step: a check means it clears WCAG AA for text (4.5:1). If you can read the mark, the pairing is legible.

50100200300400500600700800900
50
100
200
300
400
500
600
700
800
900

✓ passes AA ✗ fails AA

Copy for Tailwind

Tailwind v4 — @theme (paste into your CSS)
@theme {
  --color-teal-50: #F2F7F7;
  --color-teal-100: #E5EFF0;
  --color-teal-200: #CFE1E3;
  --color-teal-300: #B1CFD2;
  --color-teal-400: #88B6BB;
  --color-teal-500: #0E7C86;
  --color-teal-600: #09646D;
  --color-teal-700: #054A51;
  --color-teal-800: #02292D;
  --color-teal-900: #000E10;

  --color-gold-50: #FCFAF4;
  --color-gold-100: #FAF6E9;
  --color-gold-200: #F6EED8;
  --color-gold-300: #EFE3BE;
  --color-gold-400: #E7D49B;
  --color-gold-500: #D4AF37;
  --color-gold-600: #AD8F2B;
  --color-gold-700: #836B1E;
  --color-gold-800: #4C3D0E;
  --color-gold-900: #201803;
}
Tailwind v3 — tailwind.config.js
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'teal': {
        50: '#F2F7F7',
        100: '#E5EFF0',
        200: '#CFE1E3',
        300: '#B1CFD2',
        400: '#88B6BB',
        500: '#0E7C86',
        600: '#09646D',
        700: '#054A51',
        800: '#02292D',
        900: '#000E10',
        },
        'gold': {
        50: '#FCFAF4',
        100: '#FAF6E9',
        200: '#F6EED8',
        300: '#EFE3BE',
        400: '#E7D49B',
        500: '#D4AF37',
        600: '#AD8F2B',
        700: '#836B1E',
        800: '#4C3D0E',
        900: '#201803',
        },
      },
    },
  },
};
CSS variables
:root {
  --teal-50: #F2F7F7;
  --teal-100: #E5EFF0;
  --teal-200: #CFE1E3;
  --teal-300: #B1CFD2;
  --teal-400: #88B6BB;
  --teal-500: #0E7C86;
  --teal-600: #09646D;
  --teal-700: #054A51;
  --teal-800: #02292D;
  --teal-900: #000E10;

  --gold-50: #FCFAF4;
  --gold-100: #FAF6E9;
  --gold-200: #F6EED8;
  --gold-300: #EFE3BE;
  --gold-400: #E7D49B;
  --gold-500: #D4AF37;
  --gold-600: #AD8F2B;
  --gold-700: #836B1E;
  --gold-800: #4C3D0E;
  --gold-900: #201803;
}
SCSS variables
$teal-50: #F2F7F7;
$teal-100: #E5EFF0;
$teal-200: #CFE1E3;
$teal-300: #B1CFD2;
$teal-400: #88B6BB;
$teal-500: #0E7C86;
$teal-600: #09646D;
$teal-700: #054A51;
$teal-800: #02292D;
$teal-900: #000E10;

$gold-50: #FCFAF4;
$gold-100: #FAF6E9;
$gold-200: #F6EED8;
$gold-300: #EFE3BE;
$gold-400: #E7D49B;
$gold-500: #D4AF37;
$gold-600: #AD8F2B;
$gold-700: #836B1E;
$gold-800: #4C3D0E;
$gold-900: #201803;
JSON tokens
{
  "teal": {
    "50": "#F2F7F7",
    "100": "#E5EFF0",
    "200": "#CFE1E3",
    "300": "#B1CFD2",
    "400": "#88B6BB",
    "500": "#0E7C86",
    "600": "#09646D",
    "700": "#054A51",
    "800": "#02292D",
    "900": "#000E10"
  },
  "gold": {
    "50": "#FCFAF4",
    "100": "#FAF6E9",
    "200": "#F6EED8",
    "300": "#EFE3BE",
    "400": "#E7D49B",
    "500": "#D4AF37",
    "600": "#AD8F2B",
    "700": "#836B1E",
    "800": "#4C3D0E",
    "900": "#201803"
  }
}

How we name colors

There is no single official authority for naming colors. We use the common, widely recognized name as the primary label for each color (here, Teal and Gold); many common names are themselves W3C CSS named colors. For transparency we also show the nearest W3C CSS named color and the perceptual distance, ΔE, measured in OKLab. A small ΔE means the name is essentially exact; a larger one means it is the closest standard name rather than a perfect match.

Sources: W3C CSS Color Module Level 4 and the open color-name-list dataset, used to verify every color sits near a recognized name.