Skip to content
yellow · warm

#f2f0a7

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

Token name suggestion: Meadow Citron

RGB
242, 240, 167
HSL
58°, 74%, 80%
CMYK
0, 1, 31, 5
Luminance
0.8399

#f2f0a7 is a light vivid yellow, 58° on the wheel and 24/100 on the cool side. Put black text on it (17.80:1). As text it scores 1.18:1 on white — use #7D7A12 instead. Nearest name is Pale Goldenrod, nearest Tailwind family is lime.

hsl(58 74% 80%)rgb(242 240 167)Base step 300AAA inkWarm

At a glance

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

Hex
#f2f0a7
Hue
58°
yellow
Saturation
74%
vivid
Lightness
80%
light
Brightness
95%
HSV value
Perceived
92%
weighted brightness
Luminance
0.8399
WCAG relative
Temperature
Warm
24/100 cool
Color family
Yellow
Tone
Vivid
Best ink
Black
17.80:1
Closest name
Pale Goldenrod
ΔE2000 2.8
Chroma
37.1
LCH, 0–130ish
OKLCH L
0.940
perceptual lightness
Tailwind
lime
500 · ΔE 19.9
Web-safe
#FFFF99
nearest of 216
Where it sits
Hue58° of 360°
Saturation74%
Lightness80%
Saturation × lightness field

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

Temperature
Warm ← → Cool24% 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
Red22%
Green74%
Blue3%

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

Every format

HEX#f2f0a7
HEX (8-digit)#f2f0a7ff
RGBrgb(242, 240, 167)
RGBArgba(242, 240, 167, 1)
HSLhsl(58, 74%, 80%)
HSV / HSBhsv(58, 31%, 95%)
HWBhwb(58 65% 5%)
CMYKcmyk(0%, 1%, 31%, 5%)
LABlab(93.5 -10.2 35.6)
LCHlch(93.5 37.1 106.0)
OKLCHoklch(0.940 0.092 106.7)
XYZ (D65)xyz(74.75, 83.99, 48.83)
Decimal15921319
Display P3color(display-p3 0.949 0.941 0.655)
Web-safe#FFFF99

Copy-ready code

every platformclick to select
/* CSS */
color: #f2f0a7;
background-color: #f2f0a7;
/* CSS custom property */
--brand: #f2f0a7;
/* Tailwind (arbitrary) */
class="text-[#f2f0a7] bg-[#f2f0a7]"
/* SCSS */
$brand: #f2f0a7;
/* SwiftUI */
Color(red: 0.949, green: 0.941, blue: 0.655)
/* UIKit */
UIColor(red: 0.949, green: 0.941, blue: 0.655, alpha: 1)
/* Android XML */
<color name="brand">#F2F0A7</color>
/* Android Compose */
Color(0xFFF2F0A7)
/* Flutter */
Color(0xFFF2F0A7)
/* Python / OpenCV (BGR) */
(167, 240, 242)
/* Python / PIL (RGB) */
(242, 240, 167)
/* Java AWT */
new Color(242, 240, 167)
/* .NET */
Color.FromArgb(255, 242, 240, 167)
/* OpenGL / Unity (0–1) */
(0.9490f, 0.9412f, 0.6549f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{242,240,167}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #f2f0a7 85%, white);
border-color: color-mix(in oklab, #f2f0a7 40%, transparent);
/* theme-aware in one line */
color: light-dark(#6F6D10, #EEEDD3);
/* relative colour syntax */
--hover: hsl(from #f2f0a7 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: #FCFCF3;
  --brand-100: #F9F8E7;
  --brand-200: #F4F2C8;
  --brand-300: #f2f0a7;
  --brand-400: #E9E66C;
  --brand-500: #E2DE3B;
  --brand-600: #D5D01F;
  --brand-700: #B2AE1A;
  --brand-800: #8E8B15;
  --brand-900: #676513;
  --brand-950: #403F0C;
  --brand: #f2f0a7;
  --brand-ink: #000000;
  --brand-surface: #FAFAF4;
  --brand-border: #EDEBC0;
  --brand-hover: #EDEB88;
  --brand-pressed: #E9E569;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #242414;
    --brand-ink: #EEEDD3;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#FCFCF3',
        100: '#F9F8E7',
        200: '#F4F2C8',
        300: '#f2f0a7',
        400: '#E9E66C',
        500: '#E2DE3B',
        600: '#D5D01F',
        700: '#B2AE1A',
        800: '#8E8B15',
        900: '#676513',
        950: '#403F0C',
        DEFAULT: '#f2f0a7',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #FCFCF3,
  '100': #F9F8E7,
  '200': #F4F2C8,
  '300': #f2f0a7,
  '400': #E9E66C,
  '500': #E2DE3B,
  '600': #D5D01F,
  '700': #B2AE1A,
  '800': #8E8B15,
  '900': #676513,
  '950': #403F0C,
);
$brand-base: #f2f0a7;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#FCFCF3", "$type": "color" },
      "100": { "$value": "#F9F8E7", "$type": "color" },
      "200": { "$value": "#F4F2C8", "$type": "color" },
      "300": { "$value": "#f2f0a7", "$type": "color" },
      "400": { "$value": "#E9E66C", "$type": "color" },
      "500": { "$value": "#E2DE3B", "$type": "color" },
      "600": { "$value": "#D5D01F", "$type": "color" },
      "700": { "$value": "#B2AE1A", "$type": "color" },
      "800": { "$value": "#8E8B15", "$type": "color" },
      "900": { "$value": "#676513", "$type": "color" },
      "950": { "$value": "#403F0C", "$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 #f2f0a7 · 17.80:1
Use #000000AAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 1.18:1
AA fail · AA large fail · AAA fail
Aa
Black text · 17.80:1 · recommended
AA pass · AA large pass · AAA pass
Reading the other direction: #f2f0a7 as text scores 1.18:1 on white and 17.80:1 on black.
Best tinted ink on it, if plain black or white feels flat: #6F6D10 at 4.60: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
#7D7A12 · 4.50:1
AA on white−52% L
#7D7A12
The quick fox
#5A580D · 7.40:1
AAA on white−60% L
#5A580D
The quick fox
#f2f0a7 · 17.80:1
AA on blackalready passes
#f2f0a7
The quick fox
#f2f0a7 · 17.80:1
AAA on blackalready passes
#f2f0a7

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

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

NeutralRatioBoth directions
White1.18:1AaAa
Slate 501.13:1AaAa
Slate 1001.08:1AaAa
Slate 2001.04:1AaAa
Slate 3001.26:1AaAa
Slate 4002.17:1AaAa
Slate 5004.03:1AaAa
Slate 6006.42:1AaAa
Slate 7008.78:1AaAa
Slate 80012.40:1AaAa
Slate 90015.13:1AaAa
Black17.80:1AaAa
Colour vision deficiency
true color
protanopia · #FCEAA2
deuteranopia · #FEEEAA
tritanopia · #FDE7DD

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. #f2f0a7 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.

#FCFCF3
#F9F8E7
#F4F2C8
#f2f0a7
#E9E66C
#E2DE3B
#D5D01F
#B2AE1A
#8E8B15
#676513
#403F0C
Base = 300Lightest = 50 · #FCFCF3Darkest = 950 · #403F0CText 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 106.7);
  --brand-100: oklch(0.94 0.037 106.7);
  --brand-200: oklch(0.88 0.056 106.7);
  --brand-300: oklch(0.80 0.072 106.7);
  --brand-400: oklch(0.72 0.085 106.7);
  --brand-500: oklch(0.64 0.092 106.7);
  --brand-600: oklch(0.56 0.092 106.7);
  --brand-700: oklch(0.48 0.087 106.7);
  --brand-800: oklch(0.40 0.078 106.7);
  --brand-900: oklch(0.32 0.065 106.7);
  --brand-950: oklch(0.24 0.051 106.7);
}

Colors that work with #f2f0a7

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#FAFAF4
Tinted page background
Border#EDEBC0
Hairlines and dividers
Muted text#9B994B
Captions on the surface
Accent#1643B6
Second voice, not a rival
Dark variant#6F6D10
Hover, pressed, headers
Light variant#FCFBE9
Selected rows, tints
Dark surface#242414
Dark-mode background
Hover#EDEB88
One step down in lightness
Pressed#E9E569
Two steps down
Disabled#F7F7F3
Chroma pulled out
Focus ring#F9F7B5
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 #f2f0a7

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
  • Thin strokes and 1px borders — they disappear on light UI
  • 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 #6F6D10
Safe as a 1px border on white
No — use #9C9917

Meaning and mood

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

optimisticalertcheap-and-cheerfulvisible

The most visible hue at low light levels, which is why it owns warnings, hazard tape and value retail.

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

Almost never passes contrast against white. Treat it as a surface or a marker, not as text.

Reads as
  • FormalityMedium
  • EnergyMedium-high
  • Weight20/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#A7A9F2
Analogous left#F2CBA7
Analogous right#CFF2A7
Split-complement 1#A7CFF2
Split-complement 2#CBA7F2
Triadic 1#A7F2F0
Triadic 2#F0A7F2
Tetradic#A7F2CB
On the wheel
Base+30°−30°+120°+240°+180°58°

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

RGB percentages

Red94.9%
Green94.1%
Blue65.5%
R · 0–255
242
0xf2
G · 0–255
240
0xf0
B · 0–255
167
0xa7

CMYK percentages

Cyan0.0%
Magenta0.8%
Yellow31.0%
Key (black)5.1%

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

Color previews

#f2f0a7 text on a black background

contrast 17.80:1

Card sample

#f2f0a7 text on a white background

contrast 1.18:1

Card sample

#f2f0a7 on grey

1.08:1

#f2f0a7 on its own surface

1.13:1

#f2f0a7 on its dark surface

13.31:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

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

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #f2f0a7 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, 240, 167, 0.5)
rgb(242 240 167 / 50%)
#f2f0a780
hsl(58 74% 80% / 50%)
color-mix(in srgb, #f2f0a7 50%, transparent)
Alpha8-digit hexFlat on white
10%#f2f0a71a#FEFEF6
20%#f2f0a733#FCFCED
40%#f2f0a766#FAF9DC
60%#f2f0a799#F7F6CA
80%#f2f0a7cc#F5F3B9

Gradients from #f2f0a7

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, #FAF9DC, #f2f0a7 45%, #6F6D10);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #f2f0a7, #A7EE8C);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #f2f0a7, #A7A9F2);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #FDFDF2 0%, #f2f0a7 45%, #6F6D10 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #FAFAF4, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #F9E2D3 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #D9F6C2 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #6F6D10 0%, transparent 65%), #f2f0a7;

Monochromatic scale

Palettes built from #f2f0a7

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.

#f2f0a7 in the real world

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

Industries
RetailLeisureEnergyWarning systems
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.80: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.

#f2f0a7, answered

What color is #f2f0a7?

#f2f0a7 is a light vivid yellow, closest to Pale Goldenrod (ΔE2000 2.8). It sits at 58° on the hue wheel with 74% saturation and 80% lightness, which reads as warm.

What is the RGB value of #f2f0a7?

rgb(242, 240, 167) — 242 red, 240 green and 167 blue out of 255, or 94.9% / 94.1% / 65.5% by channel.

What is #f2f0a7 in HSL and HSV?

hsl(58, 74%, 80%) and hsv(58, 31%, 95%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #f2f0a7 a light or a dark color?

It is a light color. Relative luminance is 0.8399 and perceived brightness is 92%, so black text on it reaches 17.80:1.

Should I use black or white text on #f2f0a7?

Black. It scores 17.80:1 against #f2f0a7, versus 1.18:1 for white — AAA at any size.

Is #f2f0a7 accessible on a white background?

#f2f0a7 on white scores 1.18:1, which fails WCAG AA at every size. Darken it to #7D7A12 to reach 4.5:1, or #5A580D for 7:1.

What is the complementary color of #f2f0a7?

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

What colors go well with #f2f0a7?

For interface work: #FAFAF4 as the surface, #EDEBC0 for borders, #9B994B for secondary text, #1643B6 as an accent and #6F6D10 for hover and pressed states. For a palette, the analogous pair #F2CBA7 and #CFF2A7 stays calm, while #A7A9F2 is the loudest partner.

What is #f2f0a7 in CMYK for printing?

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

Is #f2f0a7 warm or cool?

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

Which Tailwind color is closest to #f2f0a7?

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

How do I use #f2f0a7 in Tailwind CSS?

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

rgba(242, 240, 167, 0.5), or #f2f0a780 in eight-digit hex. Over white that composites to #F9F8D3; over black, #797854.

Is #f2f0a7 a web-safe color?

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

What does the color #f2f0a7 mean?

As a yellow, it reads optimistic, alert, cheap-and-cheerful. The most visible hue at low light levels, which is why it owns warnings, hazard tape and value retail. At this chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #f2f0a7?

The safest is same-hue elevation: linear-gradient(135deg, #FAF9DC, #f2f0a7 45%, #6F6D10). For more colour, a short hue run to #A7EE8C keeps it rich without turning muddy.

Work with #f2f0a7 in the Color Lab

Every tool opens with this colour already loaded.

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