Skip to content
gray · neutral

#2d2c32

a deep, muted gray · neutral · closest name: Black

Token name suggestion: Cellar Concrete

RGB
45, 44, 50
HSL
250°, 6%, 18%
CMYK
10, 12, 0, 80
Luminance
0.0259

#2d2c32 is a deep muted gray, 250° on the wheel and 55/100 on the cool side. Put white text on it (13.83:1). As text it scores 13.83:1 on white — safe at any size. Nearest name is Black, nearest Tailwind family is zinc.

hsl(250 6% 18%)rgb(45 44 50)Base step 950AAA inkNeutral

At a glance

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

Hex
#2d2c32
Hue
250°
gray
Saturation
6%
muted
Lightness
18%
deep
Brightness
20%
HSV value
Perceived
18%
weighted brightness
Luminance
0.0259
WCAG relative
Temperature
Neutral
55/100 cool
Color family
Gray
Tone
Muted
Best ink
White
13.83:1
Closest name
Black
ΔE2000 12.2
Chroma
4.2
LCH, 0–130ish
OKLCH L
0.297
perceptual lightness
Tailwind
zinc
500 · ΔE 23.8
Web-safe
#333333
nearest of 216
Where it sits
Hue250° of 360°
Saturation6%
Lightness18%
Saturation × lightness field

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

Temperature
Warm ← → Cool55% cool

Near-neutral, so temperature is a whisper rather than a statement — the tinted siblings below show which way it can lean.

Luminance by channel
Red22%
Green70%
Blue9%

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

Every format

HEX#2d2c32
HEX (8-digit)#2d2c32ff
RGBrgb(45, 44, 50)
RGBArgba(45, 44, 50, 1)
HSLhsl(250, 6%, 18%)
HSV / HSBhsv(250, 12%, 20%)
HWBhwb(250 17% 80%)
CMYKcmyk(10%, 12%, 0%, 80%)
LABlab(18.3 1.9 -3.7)
LCHlch(18.3 4.2 297.4)
OKLCHoklch(0.297 0.011 293.4)
XYZ (D65)xyz(2.56, 2.59, 3.38)
Decimal2960434
Display P3color(display-p3 0.176 0.173 0.196)
Web-safe#333333

Copy-ready code

every platformclick to select
/* CSS */
color: #2d2c32;
background-color: #2d2c32;
/* CSS custom property */
--brand: #2d2c32;
/* Tailwind (arbitrary) */
class="text-[#2d2c32] bg-[#2d2c32]"
/* SCSS */
$brand: #2d2c32;
/* SwiftUI */
Color(red: 0.176, green: 0.173, blue: 0.196)
/* UIKit */
UIColor(red: 0.176, green: 0.173, blue: 0.196, alpha: 1)
/* Android XML */
<color name="brand">#2D2C32</color>
/* Android Compose */
Color(0xFF2D2C32)
/* Flutter */
Color(0xFF2D2C32)
/* Python / OpenCV (BGR) */
(50, 44, 45)
/* Python / PIL (RGB) */
(45, 44, 50)
/* Java AWT */
new Color(45, 44, 50)
/* .NET */
Color.FromArgb(255, 45, 44, 50)
/* OpenGL / Unity (0–1) */
(0.1765f, 0.1725f, 0.1961f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{45,44,50}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #2d2c32 85%, white);
border-color: color-mix(in oklab, #2d2c32 40%, transparent);
/* theme-aware in one line */
color: light-dark(#3D3C44, #DFDEE2);
/* relative colour syntax */
--hover: hsl(from #2d2c32 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: #F7F7F8;
  --brand-100: #EFEFF0;
  --brand-200: #DDDCE0;
  --brand-300: #C5C3CA;
  --brand-400: #A7A5B0;
  --brand-500: #8A8896;
  --brand-600: #757382;
  --brand-700: #625F6D;
  --brand-800: #4E4C57;
  --brand-900: #3B3A41;
  --brand-950: #2d2c32;
  --brand: #2d2c32;
  --brand-ink: #ffffff;
  --brand-surface: #F7F7F8;
  --brand-border: #D4D4D9;
  --brand-hover: #1C1B1F;
  --brand-pressed: #0B0B0C;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #1B1A1E;
    --brand-ink: #DFDEE2;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F7F7F8',
        100: '#EFEFF0',
        200: '#DDDCE0',
        300: '#C5C3CA',
        400: '#A7A5B0',
        500: '#8A8896',
        600: '#757382',
        700: '#625F6D',
        800: '#4E4C57',
        900: '#3B3A41',
        950: '#2d2c32',
        DEFAULT: '#2d2c32',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F7F7F8,
  '100': #EFEFF0,
  '200': #DDDCE0,
  '300': #C5C3CA,
  '400': #A7A5B0,
  '500': #8A8896,
  '600': #757382,
  '700': #625F6D,
  '800': #4E4C57,
  '900': #3B3A41,
  '950': #2d2c32,
);
$brand-base: #2d2c32;
$brand-ink: #ffffff;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F7F7F8", "$type": "color" },
      "100": { "$value": "#EFEFF0", "$type": "color" },
      "200": { "$value": "#DDDCE0", "$type": "color" },
      "300": { "$value": "#C5C3CA", "$type": "color" },
      "400": { "$value": "#A7A5B0", "$type": "color" },
      "500": { "$value": "#8A8896", "$type": "color" },
      "600": { "$value": "#757382", "$type": "color" },
      "700": { "$value": "#625F6D", "$type": "color" },
      "800": { "$value": "#4E4C57", "$type": "color" },
      "900": { "$value": "#3B3A41", "$type": "color" },
      "950": { "$value": "#2d2c32", "$type": "color" }
    },
    "brandInk": { "$value": "#ffffff", "$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#ffffff on #2d2c32 · 13.83:1
Use #ffffffAAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 13.83:1 · recommended
AA pass · AA large pass · AAA pass
Aa
Black text · 1.52:1
AA fail · AA large fail · AAA fail
Reading the other direction: #2d2c32 as text scores 13.83:1 on white and 1.52:1 on black.
Best tinted ink on it, if plain black or white feels flat: #F2F1F3 at 12.29: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
#2d2c32 · 13.83:1
AA on whitealready passes
#2d2c32
The quick fox
#2d2c32 · 13.83:1
AAA on whitealready passes
#2d2c32
The quick fox
#767483 · 4.60:1
AA on black+30% L
#767483
The quick fox
#9694A0 · 7.04:1
AAA on black+42% L
#9694A0

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

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

NeutralRatioBoth directions
White13.83:1AaAa
Slate 5013.22:1AaAa
Slate 10012.63:1AaAa
Slate 20011.22:1AaAa
Slate 3009.32:1AaAa
Slate 4005.40:1AaAa
Slate 5002.91:1AaAa
Slate 6001.83:1AaAa
Slate 7001.34:1AaAa
Slate 8001.06:1AaAa
Slate 9001.29:1AaAa
Black1.52:1AaAa
Colour vision deficiency
true color
protanopia · #2B2D32
deuteranopia · #2B2D32
tritanopia · #2C2D2E

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

#F7F7F8
#EFEFF0
#DDDCE0
#C5C3CA
#A7A5B0
#8A8896
#757382
#625F6D
#4E4C57
#3B3A41
#2d2c32
Base = 950Lightest = 50 · #F7F7F8Darkest = 950 · #2d2c32Text 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.003 293.4);
  --brand-100: oklch(0.94 0.004 293.4);
  --brand-200: oklch(0.88 0.006 293.4);
  --brand-300: oklch(0.80 0.008 293.4);
  --brand-400: oklch(0.72 0.010 293.4);
  --brand-500: oklch(0.64 0.011 293.4);
  --brand-600: oklch(0.56 0.011 293.4);
  --brand-700: oklch(0.48 0.010 293.4);
  --brand-800: oklch(0.40 0.009 293.4);
  --brand-900: oklch(0.32 0.008 293.4);
  --brand-950: oklch(0.24 0.006 293.4);
}

Colors that work with #2d2c32

Not a palette — a role sheet. Each swatch answers one question you will hit while building the component.

Text on it#ffffff
White wins here
Surface#F7F7F8
Tinted page background
Border#D4D4D9
Hairlines and dividers
Muted text#6E6B7A
Captions on the surface
Accent#34332A
Second voice, not a rival
Dark variant#3D3C44
Hover, pressed, headers
Light variant#F2F1F3
Selected rows, tints
Dark surface#1B1A1E
Dark-mode background
Hover#1C1B1F
One step down in lightness
Pressed#0B0B0C
Two steps down
Disabled#63606E
Chroma pulled out
Focus ring#333042
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 #2d2c32

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

Works well for
  • Body text and links on white
  • Borders, dividers and quiet backgrounds
  • Long-form reading surfaces
  • Headers, footers and dark-mode surfaces
  • Neutral UI chrome and typography
Use with care
  • Text on black or near-black surfaces
  • Black text placed on it
  • Pairing with a same-lightness hue — edges vibrate
Minimum size as text on white
Any size
Safe as a fill behind white type
Yes
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.

neutralquieteditorialengineered

Grey is the material the rest of the interface is built from: type, rules, surfaces, disabled states.

With almost no chroma left, the family association is barely present; treat it as a neutral that happens to lean this way. The low lightness adds weight and formality.

Worth knowing

Mid-greys are where accessibility quietly fails — check every step of your ladder, not just the ends.

Reads as
  • FormalityHigh
  • EnergyLow
  • Weight82/100
  • TemperatureNeutral
  • ApproachabilityBalanced

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#31322C
Analogous left#2C2E32
Analogous right#302C32
Split-complement 1#32302C
Split-complement 2#2E322C
Triadic 1#322D2C
Triadic 2#2C322D
Tetradic#322C2E
On the wheel
Base+30°−30°+120°+240°+180°250°

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

RGB percentages

Red17.6%
Green17.3%
Blue19.6%
R · 0–255
45
0x2d
G · 0–255
44
0x2c
B · 0–255
50
0x32

CMYK percentages

Cyan10.0%
Magenta12.0%
Yellow0.0%
Key (black)80.4%

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

Color previews

#2d2c32 text on a black background

contrast 1.52:1

Card sample

#2d2c32 text on a white background

contrast 13.83:1

Card sample

#2d2c32 on grey

12.63:1

#2d2c32 on its own surface

12.92:1

#2d2c32 on its dark surface

1.25:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(45, 44, 50, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(45, 44, 50, 0.45);
Border & gradient
Gradient panel
border: 3px solid #2d2c32;
background: linear-gradient(135deg, #2d2c32, #312C32);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #2d2c32 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(45, 44, 50, 0.5)
rgb(45 44 50 / 50%)
#2d2c3280
hsl(250 6% 18% / 50%)
color-mix(in srgb, #2d2c32 50%, transparent)
Alpha8-digit hexFlat on white
10%#2d2c321a#EAEAEB
20%#2d2c3233#D5D5D6
40%#2d2c3266#ABABAD
60%#2d2c3299#818084
80%#2d2c32cc#57565B

Gradients from #2d2c32

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, #4A4952, #2d2c32 45%, #3D3C44);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #2d2c32, #211E22);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #2d2c32, #31322C);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #595763 0%, #2d2c32 45%, #3D3C44 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F7F7F8, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #44484D 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #403A42 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #3D3C44 0%, transparent 65%), #2d2c32;

Monochromatic scale

Palettes built from #2d2c32

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.

#2d2c32 in the real world

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

Industries
EditorialArchitectureEnterpriseLuxury goods
Common UI roles
BackgroundsBordersBody textDividers
Print note

Converts to four-color process without much drama. Proof it anyway.

On screens

Very dark values collapse into each other on cheap panels — leave more lightness between your darkest steps than the numbers suggest.

In dark mode

Too dim on dark surfaces at 1.52:1 — lift it to #767483 for body text, or reserve it for fills.

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.

#2d2c32, answered

What color is #2d2c32?

#2d2c32 is a deep muted gray, closest to Black (ΔE2000 12.2). It sits at 250° on the hue wheel with 6% saturation and 18% lightness, which reads as neutral.

What is the RGB value of #2d2c32?

rgb(45, 44, 50) — 45 red, 44 green and 50 blue out of 255, or 17.6% / 17.3% / 19.6% by channel.

What is #2d2c32 in HSL and HSV?

hsl(250, 6%, 18%) and hsv(250, 12%, 20%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #2d2c32 a light or a dark color?

It is a dark color. Relative luminance is 0.0259 and perceived brightness is 18%, so white text on it reaches 13.83:1.

Should I use black or white text on #2d2c32?

White. It scores 13.83:1 against #2d2c32, versus 1.52:1 for black — AAA at any size.

Is #2d2c32 accessible on a white background?

#2d2c32 on white scores 13.83:1, which clears AAA at every size.

What is the complementary color of #2d2c32?

#31322C sits directly opposite on the wheel. Softer options are the split-complements #32302C and #2E322C, which give the same contrast with far less vibration.

What colors go well with #2d2c32?

For interface work: #F7F7F8 as the surface, #D4D4D9 for borders, #6E6B7A for secondary text, #34332A as an accent and #3D3C44 for hover and pressed states. For a palette, the analogous pair #2C2E32 and #302C32 stays calm, while #31322C is the loudest partner.

What is #2d2c32 in CMYK for printing?

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

Is #2d2c32 warm or cool?

Neutral — it scores 55 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #3B332D; nudged cooler, #242A30.

Which Tailwind color is closest to #2d2c32?

The zinc family — its 500 step is #71717a, ΔE2000 23.8 away. That is a visible difference, so define #2d2c32 as a custom token rather than reaching for the built-in.

How do I use #2d2c32 in Tailwind CSS?

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

rgba(45, 44, 50, 0.5), or #2d2c3280 in eight-digit hex. Over white that composites to #969699; over black, #171619.

Is #2d2c32 a web-safe color?

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

What does the color #2d2c32 mean?

As a gray, it reads neutral, quiet, editorial. Grey is the material the rest of the interface is built from: type, rules, surfaces, disabled states. At this low chroma the association is faint; it behaves more like a neutral.

What gradient works with #2d2c32?

The safest is same-hue elevation: linear-gradient(135deg, #4A4952, #2d2c32 45%, #3D3C44). For more colour, a short hue run to #211E22 keeps it rich without turning muddy.

Work with #2d2c32 in the Color Lab

Every tool opens with this colour already loaded.

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