Skip to content
green · warm

#ddf2ad

a light, vivid green · warm · closest name: Pale Goldenrod

Token name suggestion: Linen Jade

RGB
221, 242, 173
HSL
78°, 73%, 81%
CMYK
9, 0, 29, 5
Luminance
0.8189

#ddf2ad is a light vivid green, 78° on the wheel and 40/100 on the cool side. Put black text on it (17.38:1). As text it scores 1.21:1 on white — use #608115 instead. Nearest name is Pale Goldenrod, nearest Tailwind family is lime.

hsl(78 73% 81%)rgb(221 242 173)Base step 300AAA inkWarm

At a glance

Every number on this page in one read: what #ddf2ad is made of, how bright it looks, and which way it leans.

Hex
#ddf2ad
Hue
78°
green
Saturation
73%
vivid
Lightness
81%
light
Brightness
95%
HSV value
Perceived
90%
weighted brightness
Luminance
0.8189
WCAG relative
Temperature
Warm
40/100 cool
Color family
Green
Tone
Vivid
Best ink
Black
17.38:1
Closest name
Pale Goldenrod
ΔE2000 7.2
Chroma
36.0
LCH, 0–130ish
OKLCH L
0.929
perceptual lightness
Tailwind
lime
500 · ΔE 17.8
Web-safe
#CCFF99
nearest of 216
Where it sits
Hue78° of 360°
Saturation73%
Lightness81%
Saturation × lightness field

Left edge is grey, right edge is full chroma; top is white, bottom is black. The dot is #ddf2ad.

Temperature
Warm ← → Cool40% cool

Reads warm. Warm and cool siblings keep the same lightness, so you can swap one in without redoing your contrast maths.

Luminance by channel
Red19%
Green78%
Blue4%

Green carries most of what the eye calls brightness — that is why WCAG weights it 0.7152.

Every format

HEX#ddf2ad
HEX (8-digit)#ddf2adff
RGBrgb(221, 242, 173)
RGBArgba(221, 242, 173, 1)
HSLhsl(78, 73%, 81%)
HSV / HSBhsv(78, 29%, 95%)
HWBhwb(78 68% 5%)
CMYKcmyk(9%, 0%, 29%, 5%)
LABlab(92.5 -18.2 31.1)
LCHlch(92.5 36.0 120.3)
OKLCHoklch(0.929 0.092 121.9)
XYZ (D65)xyz(69.11, 81.89, 51.69)
Decimal14545581
Display P3color(display-p3 0.867 0.949 0.678)
Web-safe#CCFF99

Copy-ready code

every platformclick to select
/* CSS */
color: #ddf2ad;
background-color: #ddf2ad;
/* CSS custom property */
--brand: #ddf2ad;
/* Tailwind (arbitrary) */
class="text-[#ddf2ad] bg-[#ddf2ad]"
/* SCSS */
$brand: #ddf2ad;
/* SwiftUI */
Color(red: 0.867, green: 0.949, blue: 0.678)
/* UIKit */
UIColor(red: 0.867, green: 0.949, blue: 0.678, alpha: 1)
/* Android XML */
<color name="brand">#DDF2AD</color>
/* Android Compose */
Color(0xFFDDF2AD)
/* Flutter */
Color(0xFFDDF2AD)
/* Python / OpenCV (BGR) */
(173, 242, 221)
/* Python / PIL (RGB) */
(221, 242, 173)
/* Java AWT */
new Color(221, 242, 173)
/* .NET */
Color.FromArgb(255, 221, 242, 173)
/* OpenGL / Unity (0–1) */
(0.8667f, 0.9490f, 0.6784f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{221,242,173}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #ddf2ad 85%, white);
border-color: color-mix(in oklab, #ddf2ad 40%, transparent);
/* theme-aware in one line */
color: light-dark(#526E11, #E6EED3);
/* relative colour syntax */
--hover: hsl(from #ddf2ad h s calc(l - 7));

Design tokens

The same ramp in the four formats a team actually needs. Paste one and the whole palette lands with it.

css custom propertiesclick to select
:root {
  --brand-50: #F9FCF3;
  --brand-100: #F3F8E7;
  --brand-200: #E6F3C9;
  --brand-300: #ddf2ad;
  --brand-400: #C3E86E;
  --brand-500: #AFE03D;
  --brand-600: #9DD322;
  --brand-700: #83B01C;
  --brand-800: #698D16;
  --brand-900: #4D6614;
  --brand-950: #30400D;
  --brand: #ddf2ad;
  --brand-ink: #000000;
  --brand-surface: #F9FAF4;
  --brand-border: #DFEDC0;
  --brand-hover: #D0ED8E;
  --brand-pressed: #C3E870;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #1F2414;
    --brand-ink: #E6EED3;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F9FCF3',
        100: '#F3F8E7',
        200: '#E6F3C9',
        300: '#ddf2ad',
        400: '#C3E86E',
        500: '#AFE03D',
        600: '#9DD322',
        700: '#83B01C',
        800: '#698D16',
        900: '#4D6614',
        950: '#30400D',
        DEFAULT: '#ddf2ad',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F9FCF3,
  '100': #F3F8E7,
  '200': #E6F3C9,
  '300': #ddf2ad,
  '400': #C3E86E,
  '500': #AFE03D,
  '600': #9DD322,
  '700': #83B01C,
  '800': #698D16,
  '900': #4D6614,
  '950': #30400D,
);
$brand-base: #ddf2ad;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F9FCF3", "$type": "color" },
      "100": { "$value": "#F3F8E7", "$type": "color" },
      "200": { "$value": "#E6F3C9", "$type": "color" },
      "300": { "$value": "#ddf2ad", "$type": "color" },
      "400": { "$value": "#C3E86E", "$type": "color" },
      "500": { "$value": "#AFE03D", "$type": "color" },
      "600": { "$value": "#9DD322", "$type": "color" },
      "700": { "$value": "#83B01C", "$type": "color" },
      "800": { "$value": "#698D16", "$type": "color" },
      "900": { "$value": "#4D6614", "$type": "color" },
      "950": { "$value": "#30400D", "$type": "color" }
    },
    "brandInk": { "$value": "#000000", "$type": "color" }
  }
}

Best text color

Only one of black and white can be right. This is the one, with the number that proves it.

Readable at a glance#000000 on #ddf2ad · 17.38:1
Use #000000AAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 1.21:1
AA fail · AA large fail · AAA fail
Aa
Black text · 17.38:1 · recommended
AA pass · AA large pass · AAA pass
Reading the other direction: #ddf2ad as text scores 1.21:1 on white and 17.38:1 on black.
Best tinted ink on it, if plain black or white feels flat: #526E11 at 4.83:1.

Make it accessible

A contrast checker tells you that you failed. This tells you what to ship instead — same hue, same saturation, lightness moved only as far as WCAG demands.

The quick fox
#608115 · 4.52:1
AA on white−52% L
#608115
The quick fox
#465E0F · 7.32:1
AAA on white−60% L
#465E0F
The quick fox
#ddf2ad · 17.38:1
AA on blackalready passes
#ddf2ad
The quick fox
#ddf2ad · 17.38:1
AAA on blackalready passes
#ddf2ad

Large text — 24px regular or 18.66px bold and above — only needs 3:1, so #77A019 is enough for headings on white. Non-text elements such as icons, chart strokes and focus rings also sit at 3:1 under WCAG 2.2 (1.4.11).

Accessibility — WCAG contrast

Aa
#ddf2ad on white: 1.21:1
AA ✗ fail · AA-large · AAA
Aa
#ddf2ad on black: 17.38:1
AA ✓ pass · AA-large · AAA
Against the neutral ladder

Contrast is symmetric, so each row covers both directions: #ddf2ad as text on that neutral, and that neutral as text on #ddf2ad.

NeutralRatioBoth directions
White1.21:1AaAa
Slate 501.15:1AaAa
Slate 1001.10:1AaAa
Slate 2001.02:1AaAa
Slate 3001.23:1AaAa
Slate 4002.12:1AaAa
Slate 5003.94:1AaAa
Slate 6006.27:1AaAa
Slate 7008.57:1AaAa
Slate 80012.11:1AaAa
Slate 90014.77:1AaAa
Black17.38:1AaAa
Colour vision deficiency
true color
protanopia · #FAEAA8
deuteranopia · #F8EAB0
tritanopia · #E3EBE0

Roughly one man in twelve has some form of colour vision deficiency. If any of the three panels above is hard to tell apart from a neighbouring colour in your palette, add a shape, an icon or a label so the meaning does not rest on hue alone.

Color scale — 50 to 950

A Tailwind-shaped ramp built around this exact hex. #ddf2ad is pinned to step 300; the rest hold its hue and let saturation ease off at the extremes so the pale end never turns neon.

#F9FCF3
#F3F8E7
#E6F3C9
#ddf2ad
#C3E86E
#AFE03D
#9DD322
#83B01C
#698D16
#4D6614
#30400D
Base = 300Lightest = 50 · #F9FCF3Darkest = 950 · #30400DText step on white = 900
Perceptual ramp — OKLCH

The same eleven steps expressed in OKLCH, where equal lightness numbers actually look equally spaced. HSL ramps go muddy in the yellows and washed out in the blues; this one does not. Modern browsers render it natively — the hex ramp above is the fallback.

50100200300400500600700800900950
oklch tokensclick to select
:root {
  --brand-50: oklch(0.97 0.023 121.9);
  --brand-100: oklch(0.94 0.037 121.9);
  --brand-200: oklch(0.88 0.055 121.9);
  --brand-300: oklch(0.80 0.072 121.9);
  --brand-400: oklch(0.72 0.085 121.9);
  --brand-500: oklch(0.64 0.092 121.9);
  --brand-600: oklch(0.56 0.092 121.9);
  --brand-700: oklch(0.48 0.086 121.9);
  --brand-800: oklch(0.40 0.077 121.9);
  --brand-900: oklch(0.32 0.064 121.9);
  --brand-950: oklch(0.24 0.051 121.9);
}

Colors that work with #ddf2ad

Not a palette — a role sheet. Each swatch answers one question you will hit while building the component.

Text on it#000000
Black wins here
Surface#F9FAF4
Tinted page background
Border#DFEDC0
Hairlines and dividers
Muted text#829B4B
Captions on the surface
Accent#2018B4
Second voice, not a rival
Dark variant#526E11
Hover, pressed, headers
Light variant#F6FCE9
Selected rows, tints
Dark surface#1F2414
Dark-mode background
Hover#D0ED8E
One step down in lightness
Pressed#C3E870
Two steps down
Disabled#F6F7F3
Chroma pulled out
Focus ring#E6F9BB
Offset from the fill so it reads
Light mode
Everything in its place

Surface, border, heading and body all derive from this one hue, so the screen stays coherent without a second palette.

Primary actionSecondaryBadge
Dark mode
Same hue, inverted

Lightness flips, hue holds. The accent stays the anchor in both themes.

Primary actionSecondaryAccent

In real components

The same eight roles, wired into the interface patterns you will actually build with them. Every state below is a computed value, not a mock-up.

Buttons and states
Save changesHoverPressedDisabled
OutlineSubtleLinkFocused
Form field
you@company.com

Focus ring uses the light variant so the field still reads as one shape.

Send me product updates
Notice
Your export is ready

The file stays available for seven days. Download it before it expires.

NewBetaDraft
Data
Storage used68%
Acme LtdActive
NorthwindTrial
GlobexActive

How to use #ddf2ad

Derived from its contrast, chroma and lightness — not from taste.

Works well for
  • Text and icons on dark surfaces
  • Primary buttons and calls to action
  • Focus rings, active and selected states
  • Card and section backgrounds
  • Brand accents, badges and data highlights
Use with care
  • Text of any size on white — fails WCAG AA
  • Full-page backgrounds — tiring over long sessions
  • White text placed on it
  • Status meaning — pair it with an icon or label, never colour alone
  • Pairing with a same-lightness hue — edges vibrate
Minimum size as text on white
Not as text
Safe as a fill behind white type
No — use #526E11
Safe as a 1px border on white
No — use #77A019

Meaning and mood

What a colour in this family tends to signal, and how this particular chroma and lightness change the reading.

safegrowingnaturalpermissive

Green means go, well, and grown. It carries finance, sustainability and health with almost no explanation needed.

This is a confident chroma: strong enough to lead a brand, restrained enough to live in an interface all day. The lightness keeps it airy and approachable.

Worth knowing

Red/green pairs are the most common colour-blindness failure — never let the two carry meaning alone.

Reads as
  • FormalityMedium
  • EnergyMedium-high
  • Weight19/100
  • TemperatureWarm
  • ApproachabilityHigh

Colour associations are cultural and vary by market. Treat these as a starting point for a conversation with your audience, not a finding about them.

Similar colors

One move away from this hex in each direction. Every swatch is its own page.

Color relationships

The wheel positions with their names attached, so you can grab the one you actually need.

Complementary#C2ADF2
Analogous left#F2E5AD
Analogous right#BBF2AD
Split-complement 1#ADBBF2
Split-complement 2#E5ADF2
Triadic 1#ADDDF2
Triadic 2#F2ADDD
Tetradic#ADF2E5
On the wheel
Base+30°−30°+120°+240°+180°78°

#ddf2ad sits at 78°. Every dot is a harmony position and links to its own page in the table alongside.

RGB percentages

Red86.7%
Green94.9%
Blue67.8%
R · 0–255
221
0xdd
G · 0–255
242
0xf2
B · 0–255
173
0xad

CMYK percentages

Cyan8.7%
Magenta0.0%
Yellow28.5%
Key (black)5.1%

Total ink coverage is 42%. Most commercial presses cap around 300% — above that, sheets stop drying properly.

Color previews

#ddf2ad text on a black background

contrast 17.38:1

Card sample

#ddf2ad text on a white background

contrast 1.21:1

Card sample

#ddf2ad on grey

1.10:1

#ddf2ad on its own surface

1.15:1

#ddf2ad on its dark surface

13.16:1

CSS3 live lab

Text font color

The quick brown fox

color: #ddf2ad;
Background color
Panel with #ddf2ad background
background-color: #ddf2ad;
Text shadow — hex

Glowing headline

text-shadow: 2px 2px 8px #ddf2ad;
Text shadow — RGB

Soft neon halo

text-shadow: 0 0 14px rgba(221, 242, 173, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(221, 242, 173, 0.45);
Border & gradient
Gradient panel
border: 3px solid #ddf2ad;
background: linear-gradient(135deg, #ddf2ad, #AFF2AD);
Gradient text

Gradient headline

background: linear-gradient(90deg, #ddf2ad, #ADF2BC);
-webkit-background-clip: text;
color: transparent;
Focus ring
Focused control
outline: 2px solid #ddf2ad;
outline-offset: 3px;
Underline & caret

Marked up text

text-decoration-color: #ddf2ad;
caret-color: #ddf2ad;
Left rule
Pull quote or callout
border-left: 4px solid #ddf2ad;
Ring + tint
Selected chip
background: #F6FCE9;
box-shadow: inset 0 0 0 2px #ddf2ad;
Conic badge
68%
background: conic-gradient(#ddf2ad 68%, #e2e8f0 0);

Transparency

What each alpha value actually composites to. The top row is #ddf2ad over white; the bottom row is the same alpha over a checkerboard, so you can see what survives on a photo or a video.

Bottom row of hexes is the flattened result over white — use those when a design tool refuses transparency, or when you need a solid fallback.

alpha in every syntaxclick to select
rgba(221, 242, 173, 0.5)
rgb(221 242 173 / 50%)
#ddf2ad80
hsl(78 73% 81% / 50%)
color-mix(in srgb, #ddf2ad 50%, transparent)
Alpha8-digit hexFlat on white
10%#ddf2ad1a#FCFEF7
20%#ddf2ad33#F8FCEF
40%#ddf2ad66#F1FADE
60%#ddf2ad99#EBF7CE
80%#ddf2adcc#E4F5BD

Gradients from #ddf2ad

Six recipes, each built from this hex and shown with the exact CSS that produced it.

Elevation
Same hue, three lightnesses — safe anywhere
background: linear-gradient(135deg, #F3FAE2, #ddf2ad 45%, #526E11);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #ddf2ad, #93EE98);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #ddf2ad, #C2ADF2);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #FAFDF2 0%, #ddf2ad 45%, #526E11 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F9FAF4, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #F9F0D9 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #CDF6C8 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #526E11 0%, transparent 65%), #ddf2ad;

Monochromatic scale

Palettes built from #ddf2ad

Shades — darker

Tints — lighter

Tones — desaturated

Color harmonies

Nearest named colors

Ranked with CIEDE2000 across all 139 CSS keywords. Under ΔE 2 the eye stops telling them apart; over ΔE 10 they are plainly different colors.

#ddf2ad in the real world

Where a color in this family tends to land, and the interface roles it is usually asked to play.

Industries
SustainabilityFinanceHealth and wellnessAgriculture
Common UI roles
SurfacesBadgesHighlightsEmpty states
Print note

Converts to four-color process without much drama. Proof it anyway.

On screens

Holds up across typical panel gamma. Still worth checking on an uncalibrated laptop, where mid-tones shift most.

In dark mode

Usable as-is on a dark surface at 17.38:1.

Explore nearby colors

Small, deliberate steps away from this hex — useful when you are hunting for the version of a colour that finally feels right.

#ddf2ad, answered

What color is #ddf2ad?

#ddf2ad is a light vivid green, closest to Pale Goldenrod (ΔE2000 7.2). It sits at 78° on the hue wheel with 73% saturation and 81% lightness, which reads as warm.

What is the RGB value of #ddf2ad?

rgb(221, 242, 173) — 221 red, 242 green and 173 blue out of 255, or 86.7% / 94.9% / 67.8% by channel.

What is #ddf2ad in HSL and HSV?

hsl(78, 73%, 81%) and hsv(78, 29%, 95%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #ddf2ad a light or a dark color?

It is a light color. Relative luminance is 0.8189 and perceived brightness is 90%, so black text on it reaches 17.38:1.

Should I use black or white text on #ddf2ad?

Black. It scores 17.38:1 against #ddf2ad, versus 1.21:1 for white — AAA at any size.

Is #ddf2ad accessible on a white background?

#ddf2ad on white scores 1.21:1, which fails WCAG AA at every size. Darken it to #608115 to reach 4.5:1, or #465E0F for 7:1.

What is the complementary color of #ddf2ad?

#C2ADF2 sits directly opposite on the wheel. Softer options are the split-complements #ADBBF2 and #E5ADF2, which give the same contrast with far less vibration.

What colors go well with #ddf2ad?

For interface work: #F9FAF4 as the surface, #DFEDC0 for borders, #829B4B for secondary text, #2018B4 as an accent and #526E11 for hover and pressed states. For a palette, the analogous pair #F2E5AD and #BBF2AD stays calm, while #C2ADF2 is the loudest partner.

What is #ddf2ad in CMYK for printing?

cmyk(9%, 0%, 29%, 5%). This is a screen-to-ink approximation — ask your printer for a proof before committing to a run.

Is #ddf2ad warm or cool?

Warm — it scores 40 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #F2EEAD; nudged cooler, #C3F3AC.

Which Tailwind color is closest to #ddf2ad?

The lime family — its 500 step is #84cc16, ΔE2000 17.8 away. That is a visible difference, so define #ddf2ad as a custom token rather than reaching for the built-in.

How do I use #ddf2ad in Tailwind CSS?

Inline it as an arbitrary value with bg-[#ddf2ad] or text-[#ddf2ad], or register the whole ramp under theme.extend.colors.brand so you get bg-brand-500 and friends. The generated 50–950 scale on this page is ready to paste into your config.

What is #ddf2ad with 50% opacity?

rgba(221, 242, 173, 0.5), or #ddf2ad80 in eight-digit hex. Over white that composites to #EEF9D6; over black, #6F7957.

Is #ddf2ad a web-safe color?

No. The nearest web-safe colour is #CCFF99, ΔE2000 6.9 away. The palette only matters for legacy displays and some email clients now.

What does the color #ddf2ad mean?

As a green, it reads safe, growing, natural. Green means go, well, and grown. It carries finance, sustainability and health with almost no explanation needed. At this chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #ddf2ad?

The safest is same-hue elevation: linear-gradient(135deg, #F3FAE2, #ddf2ad 45%, #526E11). For more colour, a short hue run to #93EE98 keeps it rich without turning muddy.

Work with #ddf2ad in the Color Lab

Every tool opens with this colour already loaded.

Every value on this page is computed from #ddf2ad at request time — conversions, contrast ratios and ΔE distances are calculated, never looked up.