Skip to content
green · neutral

#f2fedb

a pale, electric green · neutral · closest name: Light Goldenrod Yellow

Token name suggestion: Mist Jade

RGB
242, 254, 219
HSL
81°, 95%, 93%
CMYK
5, 0, 14, 0
Luminance
0.9488

#f2fedb is a pale electric green, 81° on the wheel and 42/100 on the cool side. Put black text on it (19.98:1). As text it scores 1.05:1 on white — use #558004 instead. Nearest name is Light Goldenrod Yellow, nearest Tailwind family is lime.

hsl(81 95% 93%)rgb(242 254 219)Base step 100AAA inkNeutral

At a glance

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

Hex
#f2fedb
Hue
81°
green
Saturation
95%
electric
Lightness
93%
pale
Brightness
100%
HSV value
Perceived
97%
weighted brightness
Luminance
0.9488
WCAG relative
Temperature
Neutral
42/100 cool
Color family
Green
Tone
Electric
Best ink
Black
19.98:1
Closest name
Light Goldenrod Yellow
ΔE2000 4.3
Chroma
18.3
LCH, 0–130ish
OKLCH L
0.979
perceptual lightness
Tailwind
lime
500 · ΔE 25.1
Web-safe
#FFFFCC
nearest of 216
Where it sits
Hue81° of 360°
Saturation95%
Lightness93%
Saturation × lightness field

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

Temperature
Warm ← → Cool42% cool

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

Luminance by channel
Red20%
Green75%
Blue5%

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

Every format

HEX#f2fedb
HEX (8-digit)#f2fedbff
RGBrgb(242, 254, 219)
RGBArgba(242, 254, 219, 1)
HSLhsl(81, 95%, 93%)
HSV / HSBhsv(81, 14%, 100%)
HWBhwb(81 86% 0%)
CMYKcmyk(5%, 0%, 14%, 0%)
LABlab(98.0 -9.9 15.4)
LCHlch(98.0 18.3 122.6)
OKLCHoklch(0.979 0.047 122.7)
XYZ (D65)xyz(84.84, 94.88, 80.85)
Decimal15924955
Display P3color(display-p3 0.949 0.996 0.859)
Web-safe#FFFFCC

Copy-ready code

every platformclick to select
/* CSS */
color: #f2fedb;
background-color: #f2fedb;
/* CSS custom property */
--brand: #f2fedb;
/* Tailwind (arbitrary) */
class="text-[#f2fedb] bg-[#f2fedb]"
/* SCSS */
$brand: #f2fedb;
/* SwiftUI */
Color(red: 0.949, green: 0.996, blue: 0.859)
/* UIKit */
UIColor(red: 0.949, green: 0.996, blue: 0.859, alpha: 1)
/* Android XML */
<color name="brand">#F2FEDB</color>
/* Android Compose */
Color(0xFFF2FEDB)
/* Flutter */
Color(0xFFF2FEDB)
/* Python / OpenCV (BGR) */
(219, 254, 242)
/* Python / PIL (RGB) */
(242, 254, 219)
/* Java AWT */
new Color(242, 254, 219)
/* .NET */
Color.FromArgb(255, 242, 254, 219)
/* OpenGL / Unity (0–1) */
(0.9490f, 0.9961f, 0.8588f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{242,254,219}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #f2fedb 85%, white);
border-color: color-mix(in oklab, #f2fedb 40%, transparent);
/* theme-aware in one line */
color: light-dark(#537C03, #E5EED3);
/* relative colour syntax */
--hover: hsl(from #f2fedb 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: #F9FDF1;
  --brand-100: #f2fedb;
  --brand-200: #E7FAC2;
  --brand-300: #D8FC92;
  --brand-400: #C4FA5B;
  --brand-500: #B0F925;
  --brand-600: #9FEE07;
  --brand-700: #84C606;
  --brand-800: #6A9F04;
  --brand-900: #4E7208;
  --brand-950: #314805;
  --brand: #f2fedb;
  --brand-ink: #000000;
  --brand-surface: #F8FAF4;
  --brand-border: #DDEDC0;
  --brand-hover: #E5FDB8;
  --brand-pressed: #D9FC95;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #1F2414;
    --brand-ink: #E5EED3;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F9FDF1',
        100: '#f2fedb',
        200: '#E7FAC2',
        300: '#D8FC92',
        400: '#C4FA5B',
        500: '#B0F925',
        600: '#9FEE07',
        700: '#84C606',
        800: '#6A9F04',
        900: '#4E7208',
        950: '#314805',
        DEFAULT: '#f2fedb',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F9FDF1,
  '100': #f2fedb,
  '200': #E7FAC2,
  '300': #D8FC92,
  '400': #C4FA5B,
  '500': #B0F925,
  '600': #9FEE07,
  '700': #84C606,
  '800': #6A9F04,
  '900': #4E7208,
  '950': #314805,
);
$brand-base: #f2fedb;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F9FDF1", "$type": "color" },
      "100": { "$value": "#f2fedb", "$type": "color" },
      "200": { "$value": "#E7FAC2", "$type": "color" },
      "300": { "$value": "#D8FC92", "$type": "color" },
      "400": { "$value": "#C4FA5B", "$type": "color" },
      "500": { "$value": "#B0F925", "$type": "color" },
      "600": { "$value": "#9FEE07", "$type": "color" },
      "700": { "$value": "#84C606", "$type": "color" },
      "800": { "$value": "#6A9F04", "$type": "color" },
      "900": { "$value": "#4E7208", "$type": "color" },
      "950": { "$value": "#314805", "$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 #f2fedb · 19.98:1
Use #000000AAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 1.05:1
AA fail · AA large fail · AAA fail
Aa
Black text · 19.98:1 · recommended
AA pass · AA large pass · AAA pass
Reading the other direction: #f2fedb as text scores 1.05:1 on white and 19.98:1 on black.
Best tinted ink on it, if plain black or white feels flat: #537C03 at 4.70: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
#558004 · 4.69:1
AA on white−67% L
#558004
The quick fox
#416203 · 7.06:1
AAA on white−73% L
#416203
The quick fox
#f2fedb · 19.98:1
AA on blackalready passes
#f2fedb
The quick fox
#f2fedb · 19.98:1
AAA on blackalready passes
#f2fedb

Large text — 24px regular or 18.66px bold and above — only needs 3:1, so #6CA205 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
#f2fedb on white: 1.05:1
AA ✗ fail · AA-large · AAA
Aa
#f2fedb on black: 19.98:1
AA ✓ pass · AA-large · AAA
Against the neutral ladder

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

NeutralRatioBoth directions
White1.05:1AaAa
Slate 501.00:1AaAa
Slate 1001.04:1AaAa
Slate 2001.17:1AaAa
Slate 3001.41:1AaAa
Slate 4002.44:1AaAa
Slate 5004.53:1AaAa
Slate 6007.21:1AaAa
Slate 7009.85:1AaAa
Slate 80013.91:1AaAa
Slate 90016.98:1AaAa
Black19.98:1AaAa
Colour vision deficiency
true color
protanopia · #FFF9D9
deuteranopia · #FFF9DC
tritanopia · #F5FAF4

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. #f2fedb is pinned to step 100; the rest hold its hue and let saturation ease off at the extremes so the pale end never turns neon.

#F9FDF1
#f2fedb
#E7FAC2
#D8FC92
#C4FA5B
#B0F925
#9FEE07
#84C606
#6A9F04
#4E7208
#314805
Base = 100Lightest = 50 · #F9FDF1Darkest = 950 · #314805Text 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.012 122.7);
  --brand-100: oklch(0.94 0.019 122.7);
  --brand-200: oklch(0.88 0.028 122.7);
  --brand-300: oklch(0.80 0.037 122.7);
  --brand-400: oklch(0.72 0.044 122.7);
  --brand-500: oklch(0.64 0.047 122.7);
  --brand-600: oklch(0.56 0.047 122.7);
  --brand-700: oklch(0.48 0.045 122.7);
  --brand-800: oklch(0.40 0.040 122.7);
  --brand-900: oklch(0.32 0.033 122.7);
  --brand-950: oklch(0.24 0.026 122.7);
}

Colors that work with #f2fedb

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#F8FAF4
Tinted page background
Border#DDEDC0
Hairlines and dividers
Muted text#7F9B4B
Captions on the surface
Accent#1100CC
Second voice, not a rival
Dark variant#537C03
Hover, pressed, headers
Light variant#F6FEE6
Selected rows, tints
Dark surface#1F2414
Dark-mode background
Hover#E5FDB8
One step down in lightness
Pressed#D9FC95
Two steps down
Disabled#F6F7F3
Chroma pulled out
Focus ring#F1FFD6
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 #f2fedb

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 #537C03
Safe as a 1px border on white
No — use #6CA205

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.

At this chroma the association is amplified — it will dominate anything placed beside it, so give it space and use it sparingly. The high lightness makes it recede — a surface colour rather than a statement.

Worth knowing

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

Reads as
  • FormalityLow
  • EnergyHigh
  • Weight7/100
  • TemperatureNeutral
  • 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#E7DBFE
Analogous left#FEF8DB
Analogous right#E0FEDB
Split-complement 1#DBE0FE
Split-complement 2#F8DBFE
Triadic 1#DBF2FE
Triadic 2#FEDBF2
Tetradic#DBFEF8
On the wheel
Base+30°−30°+120°+240°+180°81°

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

RGB percentages

Red94.9%
Green99.6%
Blue85.9%
R · 0–255
242
0xf2
G · 0–255
254
0xfe
B · 0–255
219
0xdb

CMYK percentages

Cyan4.7%
Magenta0.0%
Yellow13.8%
Key (black)0.4%

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

Color previews

#f2fedb text on a black background

contrast 19.98:1

Card sample

#f2fedb text on a white background

contrast 1.05:1

Card sample

#f2fedb on grey

1.04:1

#f2fedb on its own surface

1.00:1

#f2fedb on its dark surface

15.12:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

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

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #f2fedb 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(242, 254, 219, 0.5)
rgb(242 254 219 / 50%)
#f2fedb80
hsl(81 95% 93% / 50%)
color-mix(in srgb, #f2fedb 50%, transparent)
Alpha8-digit hexFlat on white
10%#f2fedb1a#FEFFFB
20%#f2fedb33#FCFFF8
40%#f2fedb66#FAFFF1
60%#f2fedb99#F7FEE9
80%#f2fedbcc#F5FEE2

Gradients from #f2fedb

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, #F8FEEB, #f2fedb 45%, #537C03);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #f2fedb, #BDFDC3);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #f2fedb, #E7DBFE);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #FAFFF0 0%, #f2fedb 45%, #537C03 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F8FAF4, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #FFFFFF 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #F9FFF9 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #537C03 0%, transparent 65%), #f2fedb;

Monochromatic scale

Palettes built from #f2fedb

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.

#f2fedb 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

Sits outside most CMYK gamuts — expect a duller press result, or specify a spot ink.

On screens

Very light values are indistinguishable from white on a dim phone screen outdoors. Give it a border if the boundary matters.

In dark mode

Usable as-is on a dark surface at 19.98: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.

#f2fedb, answered

What color is #f2fedb?

#f2fedb is a pale electric green, closest to Light Goldenrod Yellow (ΔE2000 4.3). It sits at 81° on the hue wheel with 95% saturation and 93% lightness, which reads as neutral.

What is the RGB value of #f2fedb?

rgb(242, 254, 219) — 242 red, 254 green and 219 blue out of 255, or 94.9% / 99.6% / 85.9% by channel.

What is #f2fedb in HSL and HSV?

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

Is #f2fedb a light or a dark color?

It is a light color. Relative luminance is 0.9488 and perceived brightness is 97%, so black text on it reaches 19.98:1.

Should I use black or white text on #f2fedb?

Black. It scores 19.98:1 against #f2fedb, versus 1.05:1 for white — AAA at any size.

Is #f2fedb accessible on a white background?

#f2fedb on white scores 1.05:1, which fails WCAG AA at every size. Darken it to #558004 to reach 4.5:1, or #416203 for 7:1.

What is the complementary color of #f2fedb?

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

What colors go well with #f2fedb?

For interface work: #F8FAF4 as the surface, #DDEDC0 for borders, #7F9B4B for secondary text, #1100CC as an accent and #537C03 for hover and pressed states. For a palette, the analogous pair #FEF8DB and #E0FEDB stays calm, while #E7DBFE is the loudest partner.

What is #f2fedb in CMYK for printing?

cmyk(5%, 0%, 14%, 0%). This is a screen-to-ink approximation — a color this saturated sits outside most CMYK gamuts and will print duller than it looks here.

Is #f2fedb warm or cool?

Neutral — it scores 42 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #FEFDDB; nudged cooler, #E5FEDA.

Which Tailwind color is closest to #f2fedb?

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

How do I use #f2fedb in Tailwind CSS?

Inline it as an arbitrary value with bg-[#f2fedb] or text-[#f2fedb], 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 #f2fedb with 50% opacity?

rgba(242, 254, 219, 0.5), or #f2fedb80 in eight-digit hex. Over white that composites to #F9FFED; over black, #797F6E.

Is #f2fedb a web-safe color?

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

What does the color #f2fedb 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 #f2fedb?

The safest is same-hue elevation: linear-gradient(135deg, #F8FEEB, #f2fedb 45%, #537C03). For more colour, a short hue run to #BDFDC3 keeps it rich without turning muddy.

Work with #f2fedb in the Color Lab

Every tool opens with this colour already loaded.

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