Skip to content
orange · warm

#bc906a

a balanced, soft orange · warm · closest name: Peru

Token name suggestion: Signal Apricot

RGB
188, 144, 106
HSL
28°, 38%, 58%
CMYK
0, 23, 44, 26
Luminance
0.3168

#bc906a is a balanced soft orange, 28° on the wheel and 1/100 on the cool side. Put black text on it (7.34:1). As text it scores 2.86:1 on white — use #996C45 instead. Nearest name is Peru, nearest Tailwind family is orange.

hsl(28 38% 58%)rgb(188 144 106)Base step 500AAA inkWarm

At a glance

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

Hex
#bc906a
Hue
28°
orange
Saturation
38%
soft
Lightness
58%
balanced
Brightness
74%
HSV value
Perceived
61%
weighted brightness
Luminance
0.3168
WCAG relative
Temperature
Warm
1/100 cool
Color family
Orange
Tone
Soft
Best ink
Black
7.34:1
Closest name
Peru
ΔE2000 8.4
Chroma
29.0
LCH, 0–130ish
OKLCH L
0.686
perceptual lightness
Tailwind
orange
500 · ΔE 16.5
Web-safe
#CC9966
nearest of 216
Where it sits
Hue28° of 360°
Saturation38%
Lightness58%
Saturation × lightness field

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

Temperature
Warm ← → Cool1% 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
Red34%
Green63%
Blue3%

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

Every format

HEX#bc906a
HEX (8-digit)#bc906aff
RGBrgb(188, 144, 106)
RGBArgba(188, 144, 106, 1)
HSLhsl(28, 38%, 58%)
HSV / HSBhsv(28, 44%, 74%)
HWBhwb(28 42% 26%)
CMYKcmyk(0%, 23%, 44%, 26%)
LABlab(63.1 11.7 26.6)
LCHlch(63.1 29.0 66.3)
OKLCHoklch(0.686 0.075 61.9)
XYZ (D65)xyz(33.32, 31.68, 17.99)
Decimal12357738
Display P3color(display-p3 0.737 0.565 0.416)
Web-safe#CC9966

Copy-ready code

every platformclick to select
/* CSS */
color: #bc906a;
background-color: #bc906a;
/* CSS custom property */
--brand: #bc906a;
/* Tailwind (arbitrary) */
class="text-[#bc906a] bg-[#bc906a]"
/* SCSS */
$brand: #bc906a;
/* SwiftUI */
Color(red: 0.737, green: 0.565, blue: 0.416)
/* UIKit */
UIColor(red: 0.737, green: 0.565, blue: 0.416, alpha: 1)
/* Android XML */
<color name="brand">#BC906A</color>
/* Android Compose */
Color(0xFFBC906A)
/* Flutter */
Color(0xFFBC906A)
/* Python / OpenCV (BGR) */
(106, 144, 188)
/* Python / PIL (RGB) */
(188, 144, 106)
/* Java AWT */
new Color(188, 144, 106)
/* .NET */
Color.FromArgb(255, 188, 144, 106)
/* OpenGL / Unity (0–1) */
(0.7373f, 0.5647f, 0.4157f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{188,144,106}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #bc906a 85%, white);
border-color: color-mix(in oklab, #bc906a 40%, transparent);
/* theme-aware in one line */
color: light-dark(#583E28, #ECE0D5);
/* relative colour syntax */
--hover: hsl(from #bc906a 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: #FAF7F5;
  --brand-100: #F4EFEB;
  --brand-200: #E9DDD3;
  --brand-300: #DCC5B2;
  --brand-400: #CBA98B;
  --brand-500: #bc906a;
  --brand-600: #A9774C;
  --brand-700: #8D633F;
  --brand-800: #714F33;
  --brand-900: #533C28;
  --brand-950: #342519;
  --brand: #bc906a;
  --brand-ink: #000000;
  --brand-surface: #FAF7F4;
  --brand-border: #E6D5C7;
  --brand-hover: #B17E51;
  --brand-pressed: #996C45;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #241B14;
    --brand-ink: #ECE0D5;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#FAF7F5',
        100: '#F4EFEB',
        200: '#E9DDD3',
        300: '#DCC5B2',
        400: '#CBA98B',
        500: '#bc906a',
        600: '#A9774C',
        700: '#8D633F',
        800: '#714F33',
        900: '#533C28',
        950: '#342519',
        DEFAULT: '#bc906a',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #FAF7F5,
  '100': #F4EFEB,
  '200': #E9DDD3,
  '300': #DCC5B2,
  '400': #CBA98B,
  '500': #bc906a,
  '600': #A9774C,
  '700': #8D633F,
  '800': #714F33,
  '900': #533C28,
  '950': #342519,
);
$brand-base: #bc906a;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#FAF7F5", "$type": "color" },
      "100": { "$value": "#F4EFEB", "$type": "color" },
      "200": { "$value": "#E9DDD3", "$type": "color" },
      "300": { "$value": "#DCC5B2", "$type": "color" },
      "400": { "$value": "#CBA98B", "$type": "color" },
      "500": { "$value": "#bc906a", "$type": "color" },
      "600": { "$value": "#A9774C", "$type": "color" },
      "700": { "$value": "#8D633F", "$type": "color" },
      "800": { "$value": "#714F33", "$type": "color" },
      "900": { "$value": "#533C28", "$type": "color" },
      "950": { "$value": "#342519", "$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 #bc906a · 7.34:1
Use #000000AAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 2.86:1
AA fail · AA large fail · AAA fail
Aa
Black text · 7.34:1 · recommended
AA pass · AA large pass · AAA pass
Reading the other direction: #bc906a as text scores 2.86:1 on white and 7.34:1 on black.
Best tinted ink on it, if plain black or white feels flat: #583E28 at 3.44: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
#996C45 · 4.58:1
AA on white−14% L
#996C45
The quick fox
#735134 · 7.11:1
AAA on white−25% L
#735134
The quick fox
#bc906a · 7.34:1
AA on blackalready passes
#bc906a
The quick fox
#bc906a · 7.34:1
AAA on blackalready passes
#bc906a

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

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

NeutralRatioBoth directions
White2.86:1AaAa
Slate 502.74:1AaAa
Slate 1002.61:1AaAa
Slate 2002.32:1AaAa
Slate 3001.93:1AaAa
Slate 4001.12:1AaAa
Slate 5001.66:1AaAa
Slate 6002.65:1AaAa
Slate 7003.62:1AaAa
Slate 8005.11:1AaAa
Slate 9006.24:1AaAa
Black7.34:1AaAa
Colour vision deficiency
true color
protanopia · #9E9367
deuteranopia · #A89D6B
tritanopia · #C98786

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

#FAF7F5
#F4EFEB
#E9DDD3
#DCC5B2
#CBA98B
#bc906a
#A9774C
#8D633F
#714F33
#533C28
#342519
Base = 500Lightest = 50 · #FAF7F5Darkest = 950 · #342519Text 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.019 61.9);
  --brand-100: oklch(0.94 0.030 61.9);
  --brand-200: oklch(0.88 0.045 61.9);
  --brand-300: oklch(0.80 0.058 61.9);
  --brand-400: oklch(0.72 0.069 61.9);
  --brand-500: oklch(0.64 0.075 61.9);
  --brand-600: oklch(0.56 0.075 61.9);
  --brand-700: oklch(0.48 0.070 61.9);
  --brand-800: oklch(0.40 0.063 61.9);
  --brand-900: oklch(0.32 0.052 61.9);
  --brand-950: oklch(0.24 0.041 61.9);
}

Colors that work with #bc906a

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#FAF7F4
Tinted page background
Border#E6D5C7
Hairlines and dividers
Muted text#9B704B
Captions on the surface
Accent#3B7F91
Second voice, not a rival
Dark variant#583E28
Hover, pressed, headers
Light variant#F7F2ED
Selected rows, tints
Dark surface#241B14
Dark-mode background
Hover#B17E51
One step down in lightness
Pressed#996C45
Two steps down
Disabled#D6CAC0
Chroma pulled out
Focus ring#CC9A6E
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 #bc906a

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

Works well for
  • 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
  • Text of any size on white — fails WCAG AA
  • 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 #583E28
Safe as a 1px border on white
No — use #B98B63

Meaning and mood

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

friendlyenergeticaffordablesocial

Orange is red with the aggression taken out — approachable, active, and strongly associated with buying and doing.

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

Hard to make feel premium, and it collides with the "caution" band in status systems.

Reads as
  • FormalityMedium
  • EnergyMedium
  • Weight42/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#6A96BC
Analogous left#BC6A6D
Analogous right#BCB96A
Split-complement 1#6ABCB9
Split-complement 2#6A6DBC
Triadic 1#6ABC90
Triadic 2#906ABC
Tetradic#6DBC6A
On the wheel
Base+30°−30°+120°+240°+180°28°

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

RGB percentages

Red73.7%
Green56.5%
Blue41.6%
R · 0–255
188
0xbc
G · 0–255
144
0x90
B · 0–255
106
0x6a

CMYK percentages

Cyan0.0%
Magenta23.4%
Yellow43.6%
Key (black)26.3%

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

Color previews

#bc906a text on a black background

contrast 7.34:1

Card sample

#bc906a text on a white background

contrast 2.86:1

Card sample

#bc906a on grey

2.61:1

#bc906a on its own surface

2.68:1

#bc906a on its dark surface

5.91:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(188, 144, 106, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(188, 144, 106, 0.45);
Border & gradient
Gradient panel
border: 3px solid #bc906a;
background: linear-gradient(135deg, #bc906a, #B1BC6A);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #bc906a 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(188, 144, 106, 0.5)
rgb(188 144 106 / 50%)
#bc906a80
hsl(28 38% 58% / 50%)
color-mix(in srgb, #bc906a 50%, transparent)
Alpha8-digit hexFlat on white
10%#bc906a1a#F8F4F0
20%#bc906a33#F2E9E1
40%#bc906a66#E4D3C3
60%#bc906a99#D7BCA6
80%#bc906acc#C9A688

Gradients from #bc906a

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, #CFAF94, #bc906a 45%, #583E28);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #bc906a, #9EB255);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #bc906a, #6A96BC);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #D8BFA9 0%, #bc906a 45%, #583E28 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #FAF7F4, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #CC8D95 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #C2C57F 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #583E28 0%, transparent 65%), #bc906a;

Monochromatic scale

Palettes built from #bc906a

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.

#bc906a in the real world

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

Industries
E-commerceFood deliveryLogisticsCreator tools
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 7.34: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.

#bc906a, answered

What color is #bc906a?

#bc906a is a balanced soft orange, closest to Peru (ΔE2000 8.4). It sits at 28° on the hue wheel with 38% saturation and 58% lightness, which reads as warm.

What is the RGB value of #bc906a?

rgb(188, 144, 106) — 188 red, 144 green and 106 blue out of 255, or 73.7% / 56.5% / 41.6% by channel.

What is #bc906a in HSL and HSV?

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

Is #bc906a a light or a dark color?

It is a mid-tone. Relative luminance is 0.3168 and perceived brightness is 61%, so black text on it reaches 7.34:1.

Should I use black or white text on #bc906a?

Black. It scores 7.34:1 against #bc906a, versus 2.86:1 for white — AAA at any size.

Is #bc906a accessible on a white background?

#bc906a on white scores 2.86:1, which fails WCAG AA at every size. Darken it to #996C45 to reach 4.5:1, or #735134 for 7:1.

What is the complementary color of #bc906a?

#6A96BC sits directly opposite on the wheel. Softer options are the split-complements #6ABCB9 and #6A6DBC, which give the same contrast with far less vibration.

What colors go well with #bc906a?

For interface work: #FAF7F4 as the surface, #E6D5C7 for borders, #9B704B for secondary text, #3B7F91 as an accent and #583E28 for hover and pressed states. For a palette, the analogous pair #BC6A6D and #BCB96A stays calm, while #6A96BC is the loudest partner.

What is #bc906a in CMYK for printing?

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

Is #bc906a warm or cool?

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

Which Tailwind color is closest to #bc906a?

The orange family — its 500 step is #f97316, ΔE2000 16.5 away. That is a visible difference, so define #bc906a as a custom token rather than reaching for the built-in.

How do I use #bc906a in Tailwind CSS?

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

rgba(188, 144, 106, 0.5), or #bc906a80 in eight-digit hex. Over white that composites to #DEC8B5; over black, #5E4835.

Is #bc906a a web-safe color?

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

What does the color #bc906a mean?

As a orange, it reads friendly, energetic, affordable. Orange is red with the aggression taken out — approachable, active, and strongly associated with buying and doing. At this moderate chroma the association is present but not shouted.

What gradient works with #bc906a?

The safest is same-hue elevation: linear-gradient(135deg, #CFAF94, #bc906a 45%, #583E28). For more colour, a short hue run to #9EB255 keeps it rich without turning muddy.

Work with #bc906a in the Color Lab

Every tool opens with this colour already loaded.

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