Skip to content
magenta / pink · warm

#ff8baa

a light, electric magenta / pink · warm · closest name: Pale Violet Red

Token name suggestion: Drift Peony

RGB
255, 139, 170
HSL
344°, 100%, 77%
CMYK
0, 46, 33, 0
Luminance
0.4263

#ff8baa is a light electric magenta / pink, 344° on the wheel and 26/100 on the cool side. Put black text on it (9.53:1). As text it scores 2.20:1 on white — use #EC003F instead. Nearest name is Pale Violet Red, nearest Tailwind family is pink.

hsl(344 100% 77%)rgb(255 139 170)Base step 300AAA inkWarm

At a glance

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

Hex
#ff8baa
Hue
344°
magenta / pink
Saturation
100%
electric
Lightness
77%
light
Brightness
100%
HSV value
Perceived
72%
weighted brightness
Luminance
0.4263
WCAG relative
Temperature
Warm
26/100 cool
Color family
Magenta / pink
Tone
Electric
Best ink
Black
9.53:1
Closest name
Pale Violet Red
ΔE2000 8.9
Chroma
47.3
LCH, 0–130ish
OKLCH L
0.771
perceptual lightness
Tailwind
pink
500 · ΔE 14.4
Web-safe
#FF9999
nearest of 216
Where it sits
Hue344° of 360°
Saturation100%
Lightness77%
Saturation × lightness field

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

Temperature
Warm ← → Cool26% 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
Red50%
Green43%
Blue7%

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

Every format

HEX#ff8baa
HEX (8-digit)#ff8baaff
RGBrgb(255, 139, 170)
RGBArgba(255, 139, 170, 1)
HSLhsl(344, 100%, 77%)
HSV / HSBhsv(344, 45%, 100%)
HWBhwb(344 55% 0%)
CMYKcmyk(0%, 46%, 33%, 0%)
LABlab(71.3 47.1 3.5)
LCHlch(71.3 47.3 4.3)
OKLCHoklch(0.771 0.143 3.9)
XYZ (D65)xyz(57.73, 42.63, 43.21)
Decimal16747434
Display P3color(display-p3 1.000 0.545 0.667)
Web-safe#FF9999

Copy-ready code

every platformclick to select
/* CSS */
color: #ff8baa;
background-color: #ff8baa;
/* CSS custom property */
--brand: #ff8baa;
/* Tailwind (arbitrary) */
class="text-[#ff8baa] bg-[#ff8baa]"
/* SCSS */
$brand: #ff8baa;
/* SwiftUI */
Color(red: 1.000, green: 0.545, blue: 0.667)
/* UIKit */
UIColor(red: 1.000, green: 0.545, blue: 0.667, alpha: 1)
/* Android XML */
<color name="brand">#FF8BAA</color>
/* Android Compose */
Color(0xFFFF8BAA)
/* Flutter */
Color(0xFFFF8BAA)
/* Python / OpenCV (BGR) */
(170, 139, 255)
/* Python / PIL (RGB) */
(255, 139, 170)
/* Java AWT */
new Color(255, 139, 170)
/* .NET */
Color.FromArgb(255, 255, 139, 170)
/* OpenGL / Unity (0–1) */
(1.0000f, 0.5451f, 0.6667f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{255,139,170}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #ff8baa 85%, white);
border-color: color-mix(in oklab, #ff8baa 40%, transparent);
/* theme-aware in one line */
color: light-dark(#800022, #EED3DA);
/* relative colour syntax */
--hover: hsl(from #ff8baa 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: #FEF1F4;
  --brand-100: #FCE3EA;
  --brand-200: #FCC0D0;
  --brand-300: #ff8baa;
  --brand-400: #FF5784;
  --brand-500: #FF1F5A;
  --brand-600: #F50041;
  --brand-700: #CC0036;
  --brand-800: #A3002C;
  --brand-900: #760523;
  --brand-950: #490316;
  --brand: #ff8baa;
  --brand-ink: #000000;
  --brand-surface: #FAF4F6;
  --brand-border: #EDC0CC;
  --brand-hover: #FF6890;
  --brand-pressed: #FF4476;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #241418;
    --brand-ink: #EED3DA;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#FEF1F4',
        100: '#FCE3EA',
        200: '#FCC0D0',
        300: '#ff8baa',
        400: '#FF5784',
        500: '#FF1F5A',
        600: '#F50041',
        700: '#CC0036',
        800: '#A3002C',
        900: '#760523',
        950: '#490316',
        DEFAULT: '#ff8baa',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #FEF1F4,
  '100': #FCE3EA,
  '200': #FCC0D0,
  '300': #ff8baa,
  '400': #FF5784,
  '500': #FF1F5A,
  '600': #F50041,
  '700': #CC0036,
  '800': #A3002C,
  '900': #760523,
  '950': #490316,
);
$brand-base: #ff8baa;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#FEF1F4", "$type": "color" },
      "100": { "$value": "#FCE3EA", "$type": "color" },
      "200": { "$value": "#FCC0D0", "$type": "color" },
      "300": { "$value": "#ff8baa", "$type": "color" },
      "400": { "$value": "#FF5784", "$type": "color" },
      "500": { "$value": "#FF1F5A", "$type": "color" },
      "600": { "$value": "#F50041", "$type": "color" },
      "700": { "$value": "#CC0036", "$type": "color" },
      "800": { "$value": "#A3002C", "$type": "color" },
      "900": { "$value": "#760523", "$type": "color" },
      "950": { "$value": "#490316", "$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 #ff8baa · 9.53:1
Use #000000AAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 2.20:1
AA fail · AA large fail · AAA fail
Aa
Black text · 9.53:1 · recommended
AA pass · AA large pass · AAA pass
Reading the other direction: #ff8baa as text scores 2.20:1 on white and 9.53:1 on black.
Best tinted ink on it, if plain black or white feels flat: #800022 at 4.91: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
#EC003F · 4.53:1
AA on white−31% L
#EC003F
The quick fox
#B40030 · 7.04:1
AAA on white−42% L
#B40030
The quick fox
#ff8baa · 9.53:1
AA on blackalready passes
#ff8baa
The quick fox
#ff8baa · 9.53:1
AAA on blackalready passes
#ff8baa

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

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

NeutralRatioBoth directions
White2.20:1AaAa
Slate 502.11:1AaAa
Slate 1002.01:1AaAa
Slate 2001.79:1AaAa
Slate 3001.48:1AaAa
Slate 4001.16:1AaAa
Slate 5002.16:1AaAa
Slate 6003.44:1AaAa
Slate 7004.70:1AaAa
Slate 8006.64:1AaAa
Slate 9008.10:1AaAa
Black9.53:1AaAa
Colour vision deficiency
true color
protanopia · #9EA1AB
deuteranopia · #BBB7A7
tritanopia · #FF8196

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

#FEF1F4
#FCE3EA
#FCC0D0
#ff8baa
#FF5784
#FF1F5A
#F50041
#CC0036
#A3002C
#760523
#490316
Base = 300Lightest = 50 · #FEF1F4Darkest = 950 · #490316Text step on white = 700
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.036 3.9);
  --brand-100: oklch(0.94 0.057 3.9);
  --brand-200: oklch(0.88 0.086 3.9);
  --brand-300: oklch(0.80 0.112 3.9);
  --brand-400: oklch(0.72 0.132 3.9);
  --brand-500: oklch(0.64 0.143 3.9);
  --brand-600: oklch(0.56 0.143 3.9);
  --brand-700: oklch(0.48 0.135 3.9);
  --brand-800: oklch(0.40 0.120 3.9);
  --brand-900: oklch(0.32 0.100 3.9);
  --brand-950: oklch(0.24 0.079 3.9);
}

Colors that work with #ff8baa

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#FAF4F6
Tinted page background
Border#EDC0CC
Hairlines and dividers
Muted text#9B4B60
Captions on the surface
Accent#00CC63
Second voice, not a rival
Dark variant#800022
Hover, pressed, headers
Light variant#FFE5EC
Selected rows, tints
Dark surface#241418
Dark-mode background
Hover#FF6890
One step down in lightness
Pressed#FF4476
Two steps down
Disabled#F7F3F4
Chroma pulled out
Focus ring#FFA0B9
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 #ff8baa

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
  • 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 #800022
Safe as a 1px border on white
No — use #FF5885

Meaning and mood

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

expressiveyouthfulwarmconfident

Pink is the fastest way to signal that a product is not another enterprise dashboard. It carries beauty, fashion and culture brands.

At this chroma the association is amplified — it will dominate anything placed beside it, so give it space and use it sparingly. The lightness keeps it airy and approachable.

Worth knowing

Strong gendered associations in some markets — test it with the audience you actually have.

Reads as
  • FormalityLow
  • EnergyHigh
  • Weight23/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#8BFFE0
Analogous left#FF8BE4
Analogous right#FFA68B
Split-complement 1#8BFFA6
Split-complement 2#8BE4FF
Triadic 1#AAFF8B
Triadic 2#8BAAFF
Tetradic#E4FF8B
On the wheel
Base+30°−30°+120°+240°+180°344°

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

RGB percentages

Red100.0%
Green54.5%
Blue66.7%
R · 0–255
255
0xff
G · 0–255
139
0x8b
B · 0–255
170
0xaa

CMYK percentages

Cyan0.0%
Magenta45.5%
Yellow33.3%
Key (black)0.0%

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

Color previews

#ff8baa text on a black background

contrast 9.53:1

Card sample

#ff8baa text on a white background

contrast 2.20:1

Card sample

#ff8baa on grey

2.01:1

#ff8baa on its own surface

2.03:1

#ff8baa on its dark surface

8.02:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(255, 139, 170, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(255, 139, 170, 0.45);
Border & gradient
Gradient panel
border: 3px solid #ff8baa;
background: linear-gradient(135deg, #ff8baa, #FFBA8B);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #ff8baa 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(255, 139, 170, 0.5)
rgb(255 139 170 / 50%)
#ff8baa80
hsl(344 100% 77% / 50%)
color-mix(in srgb, #ff8baa 50%, transparent)
Alpha8-digit hexFlat on white
10%#ff8baa1a#FFF3F7
20%#ff8baa33#FFE8EE
40%#ff8baa66#FFD1DD
60%#ff8baa99#FFB9CC
80%#ff8baacc#FFA2BB

Gradients from #ff8baa

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, #FFC8D7, #ff8baa 45%, #800022);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #ff8baa, #FFB36D);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #ff8baa, #8BFFE0);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #FFE7ED 0%, #ff8baa 45%, #800022 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #FAF4F6, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #FFBEF5 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #FFC5AA 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #800022 0%, transparent 65%), #ff8baa;

Monochromatic scale

Palettes built from #ff8baa

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.

#ff8baa in the real world

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

Industries
BeautyFashionLifestyleYouth brands
Common UI roles
SurfacesBadgesHighlightsEmpty states
Print note

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

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 9.53: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.

#ff8baa, answered

What color is #ff8baa?

#ff8baa is a light electric magenta / pink, closest to Pale Violet Red (ΔE2000 8.9). It sits at 344° on the hue wheel with 100% saturation and 77% lightness, which reads as warm.

What is the RGB value of #ff8baa?

rgb(255, 139, 170) — 255 red, 139 green and 170 blue out of 255, or 100% / 54.5% / 66.7% by channel.

What is #ff8baa in HSL and HSV?

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

Is #ff8baa a light or a dark color?

It is a mid-tone. Relative luminance is 0.4263 and perceived brightness is 72%, so black text on it reaches 9.53:1.

Should I use black or white text on #ff8baa?

Black. It scores 9.53:1 against #ff8baa, versus 2.20:1 for white — AAA at any size.

Is #ff8baa accessible on a white background?

#ff8baa on white scores 2.20:1, which fails WCAG AA at every size. Darken it to #EC003F to reach 4.5:1, or #B40030 for 7:1.

What is the complementary color of #ff8baa?

#8BFFE0 sits directly opposite on the wheel. Softer options are the split-complements #8BFFA6 and #8BE4FF, which give the same contrast with far less vibration.

What colors go well with #ff8baa?

For interface work: #FAF4F6 as the surface, #EDC0CC for borders, #9B4B60 for secondary text, #00CC63 as an accent and #800022 for hover and pressed states. For a palette, the analogous pair #FF8BE4 and #FFA68B stays calm, while #8BFFE0 is the loudest partner.

What is #ff8baa in CMYK for printing?

cmyk(0%, 46%, 33%, 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 #ff8baa warm or cool?

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

Which Tailwind color is closest to #ff8baa?

The pink family — its 500 step is #ec4899, ΔE2000 14.4 away. That is a visible difference, so define #ff8baa as a custom token rather than reaching for the built-in.

How do I use #ff8baa in Tailwind CSS?

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

rgba(255, 139, 170, 0.5), or #ff8baa80 in eight-digit hex. Over white that composites to #FFC5D5; over black, #804655.

Is #ff8baa a web-safe color?

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

What does the color #ff8baa mean?

As a magenta / pink, it reads expressive, youthful, warm. Pink is the fastest way to signal that a product is not another enterprise dashboard. It carries beauty, fashion and culture brands. At this chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #ff8baa?

The safest is same-hue elevation: linear-gradient(135deg, #FFC8D7, #ff8baa 45%, #800022). For more colour, a short hue run to #FFB36D keeps it rich without turning muddy.

Work with #ff8baa in the Color Lab

Every tool opens with this colour already loaded.

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