Skip to content
magenta / pink · warm

#bb697f

a balanced, soft magenta / pink · warm · closest name: Pale Violet Red

Token name suggestion: Atlas Blossom

RGB
187, 105, 127
HSL
344°, 38%, 57%
CMYK
0, 44, 32, 27
Luminance
0.2220

#bb697f is a balanced soft magenta / pink, 344° on the wheel and 26/100 on the cool side. Put black text on it (5.44:1). As text it scores 3.86:1 on white — large text only. Nearest name is Pale Violet Red, nearest Tailwind family is pink.

hsl(344 38% 57%)rgb(187 105 127)Base step 500AA inkWarm

At a glance

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

Hex
#bb697f
Hue
344°
magenta / pink
Saturation
38%
soft
Lightness
57%
balanced
Brightness
73%
HSV value
Perceived
54%
weighted brightness
Luminance
0.2220
WCAG relative
Temperature
Warm
26/100 cool
Color family
Magenta / pink
Tone
Soft
Best ink
Black
5.44:1
Closest name
Pale Violet Red
ΔE2000 6.9
Chroma
35.4
LCH, 0–130ish
OKLCH L
0.619
perceptual lightness
Tailwind
pink
500 · ΔE 11.3
Web-safe
#CC6666
nearest of 216
Where it sits
Hue344° of 360°
Saturation38%
Lightness57%
Saturation × lightness field

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

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
Red48%
Green46%
Blue7%

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

Every format

HEX#bb697f
HEX (8-digit)#bb697fff
RGBrgb(187, 105, 127)
RGBArgba(187, 105, 127, 1)
HSLhsl(344, 38%, 57%)
HSV / HSBhsv(344, 44%, 73%)
HWBhwb(344 41% 27%)
CMYKcmyk(0%, 44%, 32%, 27%)
LABlab(54.2 35.3 2.3)
LCHlch(54.2 35.4 3.8)
OKLCHoklch(0.619 0.107 3.5)
XYZ (D65)xyz(29.38, 22.20, 22.81)
Decimal12282239
Display P3color(display-p3 0.733 0.412 0.498)
Web-safe#CC6666

Copy-ready code

every platformclick to select
/* CSS */
color: #bb697f;
background-color: #bb697f;
/* CSS custom property */
--brand: #bb697f;
/* Tailwind (arbitrary) */
class="text-[#bb697f] bg-[#bb697f]"
/* SCSS */
$brand: #bb697f;
/* SwiftUI */
Color(red: 0.733, green: 0.412, blue: 0.498)
/* UIKit */
UIColor(red: 0.733, green: 0.412, blue: 0.498, alpha: 1)
/* Android XML */
<color name="brand">#BB697F</color>
/* Android Compose */
Color(0xFFBB697F)
/* Flutter */
Color(0xFFBB697F)
/* Python / OpenCV (BGR) */
(127, 105, 187)
/* Python / PIL (RGB) */
(187, 105, 127)
/* Java AWT */
new Color(187, 105, 127)
/* .NET */
Color.FromArgb(255, 187, 105, 127)
/* OpenGL / Unity (0–1) */
(0.7333f, 0.4118f, 0.4980f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{187,105,127}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #bb697f 85%, white);
border-color: color-mix(in oklab, #bb697f 40%, transparent);
/* theme-aware in one line */
color: light-dark(#582835, #ECD5DB);
/* relative colour syntax */
--hover: hsl(from #bb697f 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: #FAF5F6;
  --brand-100: #F4EBEE;
  --brand-200: #E9D3D9;
  --brand-300: #DCB2BD;
  --brand-400: #CA8B9C;
  --brand-500: #bb697f;
  --brand-600: #A84C65;
  --brand-700: #8C4054;
  --brand-800: #703343;
  --brand-900: #522833;
  --brand-950: #331920;
  --brand: #bb697f;
  --brand-ink: #000000;
  --brand-surface: #FAF4F6;
  --brand-border: #E6C7CF;
  --brand-hover: #B0516A;
  --brand-pressed: #98455B;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #241418;
    --brand-ink: #ECD5DB;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#FAF5F6',
        100: '#F4EBEE',
        200: '#E9D3D9',
        300: '#DCB2BD',
        400: '#CA8B9C',
        500: '#bb697f',
        600: '#A84C65',
        700: '#8C4054',
        800: '#703343',
        900: '#522833',
        950: '#331920',
        DEFAULT: '#bb697f',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #FAF5F6,
  '100': #F4EBEE,
  '200': #E9D3D9,
  '300': #DCB2BD,
  '400': #CA8B9C,
  '500': #bb697f,
  '600': #A84C65,
  '700': #8C4054,
  '800': #703343,
  '900': #522833,
  '950': #331920,
);
$brand-base: #bb697f;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#FAF5F6", "$type": "color" },
      "100": { "$value": "#F4EBEE", "$type": "color" },
      "200": { "$value": "#E9D3D9", "$type": "color" },
      "300": { "$value": "#DCB2BD", "$type": "color" },
      "400": { "$value": "#CA8B9C", "$type": "color" },
      "500": { "$value": "#bb697f", "$type": "color" },
      "600": { "$value": "#A84C65", "$type": "color" },
      "700": { "$value": "#8C4054", "$type": "color" },
      "800": { "$value": "#703343", "$type": "color" },
      "900": { "$value": "#522833", "$type": "color" },
      "950": { "$value": "#331920", "$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 #bb697f · 5.44:1
Use #000000AA at every size, AAA for large text only.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 3.86:1
AA fail · AA large pass · AAA fail
Aa
Black text · 5.44:1 · recommended
AA pass · AA large pass · AAA fail
Reading the other direction: #bb697f as text scores 3.86:1 on white and 5.44:1 on black.
Best tinted ink on it, if plain black or white feels flat: #582835 at 3.07: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
#B35870 · 4.62:1
AA on white−5% L
#B35870
The quick fox
#8D4055 · 7.01:1
AAA on white−17% L
#8D4055
The quick fox
#bb697f · 5.44:1
AA on blackalready passes
#bb697f
The quick fox
#C68294 · 7.02:1
AAA on black+7% L
#C68294

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

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

NeutralRatioBoth directions
White3.86:1AaAa
Slate 503.69:1AaAa
Slate 1003.52:1AaAa
Slate 2003.13:1AaAa
Slate 3002.60:1AaAa
Slate 4001.51:1AaAa
Slate 5001.23:1AaAa
Slate 6001.96:1AaAa
Slate 7002.68:1AaAa
Slate 8003.79:1AaAa
Slate 9004.62:1AaAa
Black5.44:1AaAa
Colour vision deficiency
true color
protanopia · #767880
deuteranopia · #8A887D
tritanopia · #C86371

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

#FAF5F6
#F4EBEE
#E9D3D9
#DCB2BD
#CA8B9C
#bb697f
#A84C65
#8C4054
#703343
#522833
#331920
Base = 500Lightest = 50 · #FAF5F6Darkest = 950 · #331920Text step on white = 600
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.027 3.5);
  --brand-100: oklch(0.94 0.043 3.5);
  --brand-200: oklch(0.88 0.064 3.5);
  --brand-300: oklch(0.80 0.084 3.5);
  --brand-400: oklch(0.72 0.099 3.5);
  --brand-500: oklch(0.64 0.107 3.5);
  --brand-600: oklch(0.56 0.107 3.5);
  --brand-700: oklch(0.48 0.101 3.5);
  --brand-800: oklch(0.40 0.090 3.5);
  --brand-900: oklch(0.32 0.075 3.5);
  --brand-950: oklch(0.24 0.059 3.5);
}

Colors that work with #bb697f

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#E6C7CF
Hairlines and dividers
Muted text#9B4B60
Captions on the surface
Accent#3C9064
Second voice, not a rival
Dark variant#582835
Hover, pressed, headers
Light variant#F7EDF0
Selected rows, tints
Dark surface#241418
Dark-mode background
Hover#B0516A
One step down in lightness
Pressed#98455B
Two steps down
Disabled#D6BFC5
Chroma pulled out
Focus ring#CB6D87
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 #bb697f

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

Works well for
  • Headings from 24px up on white
  • Text and icons on dark surfaces
  • Charts, tags and secondary surfaces
  • Brand accents, badges and data highlights
  • Chart series and data categories
Use with care
  • Small text on white — under 4.5:1
  • Pairing with a same-lightness hue — edges vibrate
Minimum size as text on white
24px / 18.66px bold
Safe as a fill behind white type
No — use #582835
Safe as a 1px border on white
Yes

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.

The muted chroma softens the association — it reads considered rather than loud, which suits long-form and data-heavy screens. The mid lightness keeps it versatile in both themes.

Worth knowing

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

Reads as
  • FormalityMedium
  • EnergyMedium
  • Weight43/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#69BBA5
Analogous left#BB69A8
Analogous right#BB7C69
Split-complement 1#69BB7C
Split-complement 2#69A8BB
Triadic 1#7FBB69
Triadic 2#697FBB
Tetradic#A8BB69
On the wheel
Base+30°−30°+120°+240°+180°344°

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

RGB percentages

Red73.3%
Green41.2%
Blue49.8%
R · 0–255
187
0xbb
G · 0–255
105
0x69
B · 0–255
127
0x7f

CMYK percentages

Cyan0.0%
Magenta43.9%
Yellow32.1%
Key (black)26.7%

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

Color previews

#bb697f text on a black background

contrast 5.44:1

Card sample

#bb697f text on a white background

contrast 3.86:1

Card sample

#bb697f on grey

3.52:1

#bb697f on its own surface

3.55:1

#bb697f on its dark surface

4.58:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(187, 105, 127, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(187, 105, 127, 0.45);
Border & gradient
Gradient panel
border: 3px solid #bb697f;
background: linear-gradient(135deg, #bb697f, #BB8A69);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #bb697f 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(187, 105, 127, 0.5)
rgb(187 105 127 / 50%)
#bb697f80
hsl(344 38% 57% / 50%)
color-mix(in srgb, #bb697f 50%, transparent)
Alpha8-digit hexFlat on white
10%#bb697f1a#F8F0F2
20%#bb697f33#F1E1E5
40%#bb697f66#E4C3CC
60%#bb697f99#D6A5B2
80%#bb697fcc#C98799

Gradients from #bb697f

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, #CE93A3, #bb697f 45%, #582835);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #bb697f, #B28154);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #bb697f, #69BBA5);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #D8A8B5 0%, #bb697f 45%, #582835 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%, #CB8CC2 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #C5947E 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #582835 0%, transparent 65%), #bb697f;

Monochromatic scale

Palettes built from #bb697f

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.

#bb697f 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
ButtonsLinksFocus statesCharts
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 5.44: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.

#bb697f, answered

What color is #bb697f?

#bb697f is a balanced soft magenta / pink, closest to Pale Violet Red (ΔE2000 6.9). It sits at 344° on the hue wheel with 38% saturation and 57% lightness, which reads as warm.

What is the RGB value of #bb697f?

rgb(187, 105, 127) — 187 red, 105 green and 127 blue out of 255, or 73.3% / 41.2% / 49.8% by channel.

What is #bb697f in HSL and HSV?

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

Is #bb697f a light or a dark color?

It is a mid-tone. Relative luminance is 0.2220 and perceived brightness is 54%, so black text on it reaches 5.44:1.

Should I use black or white text on #bb697f?

Black. It scores 5.44:1 against #bb697f, versus 3.86:1 for white — AA at any size.

Is #bb697f accessible on a white background?

#bb697f on white scores 3.86:1, which only clears AA for large text — 18.66px bold or 24px regular and up. Darken it to #B35870 to reach 4.5:1, or #8D4055 for 7:1.

What is the complementary color of #bb697f?

#69BBA5 sits directly opposite on the wheel. Softer options are the split-complements #69BB7C and #69A8BB, which give the same contrast with far less vibration.

What colors go well with #bb697f?

For interface work: #FAF4F6 as the surface, #E6C7CF for borders, #9B4B60 for secondary text, #3C9064 as an accent and #582835 for hover and pressed states. For a palette, the analogous pair #BB69A8 and #BB7C69 stays calm, while #69BBA5 is the loudest partner.

What is #bb697f in CMYK for printing?

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

Is #bb697f 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 #BB7169; nudged cooler, #BD679E.

Which Tailwind color is closest to #bb697f?

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

How do I use #bb697f in Tailwind CSS?

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

rgba(187, 105, 127, 0.5), or #bb697f80 in eight-digit hex. Over white that composites to #DDB4BF; over black, #5E3540.

Is #bb697f a web-safe color?

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

What does the color #bb697f 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 moderate chroma the association is present but not shouted.

What gradient works with #bb697f?

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

Work with #bb697f in the Color Lab

Every tool opens with this colour already loaded.

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