Skip to content
violet · neutral

#533d60

a dark, soft violet · neutral · closest name: Dark Slate Blue

Token name suggestion: Dusk Amethyst

RGB
83, 61, 96
HSL
278°, 22%, 31%
CMYK
14, 37, 0, 62
Luminance
0.0602

#533d60 is a dark soft violet, 278° on the wheel and 58/100 on the cool side. Put white text on it (9.53:1). As text it scores 9.53:1 on white — safe at any size. Nearest name is Dark Slate Blue, nearest Tailwind family is zinc.

hsl(278 22% 31%)rgb(83 61 96)Base step 800AAA inkNeutral

At a glance

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

Hex
#533d60
Hue
278°
violet
Saturation
22%
soft
Lightness
31%
dark
Brightness
38%
HSV value
Perceived
29%
weighted brightness
Luminance
0.0602
WCAG relative
Temperature
Neutral
58/100 cool
Color family
Violet
Tone
Soft
Best ink
White
9.53:1
Closest name
Dark Slate Blue
ΔE2000 12
Chroma
24.1
LCH, 0–130ish
OKLCH L
0.399
perceptual lightness
Tailwind
zinc
500 · ΔE 21.3
Web-safe
#663366
nearest of 216
Where it sits
Hue278° of 360°
Saturation22%
Lightness31%
Saturation × lightness field

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

Temperature
Warm ← → Cool58% cool

Reads neutral. Warm and cool siblings keep the same lightness, so you can swap one in without redoing your contrast maths.

Luminance by channel
Red31%
Green55%
Blue14%

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

Every format

HEX#533d60
HEX (8-digit)#533d60ff
RGBrgb(83, 61, 96)
RGBArgba(83, 61, 96, 1)
HSLhsl(278, 22%, 31%)
HSV / HSBhsv(278, 36%, 38%)
HWBhwb(278 24% 62%)
CMYKcmyk(14%, 37%, 0%, 62%)
LABlab(29.5 17.0 -17.1)
LCHlch(29.5 24.1 314.9)
OKLCHoklch(0.399 0.064 312.4)
XYZ (D65)xyz(7.35, 6.02, 11.84)
Decimal5455200
Display P3color(display-p3 0.325 0.239 0.376)
Web-safe#663366

Copy-ready code

every platformclick to select
/* CSS */
color: #533d60;
background-color: #533d60;
/* CSS custom property */
--brand: #533d60;
/* Tailwind (arbitrary) */
class="text-[#533d60] bg-[#533d60]"
/* SCSS */
$brand: #533d60;
/* SwiftUI */
Color(red: 0.325, green: 0.239, blue: 0.376)
/* UIKit */
UIColor(red: 0.325, green: 0.239, blue: 0.376, alpha: 1)
/* Android XML */
<color name="brand">#533D60</color>
/* Android Compose */
Color(0xFF533D60)
/* Flutter */
Color(0xFF533D60)
/* Python / OpenCV (BGR) */
(96, 61, 83)
/* Python / PIL (RGB) */
(83, 61, 96)
/* Java AWT */
new Color(83, 61, 96)
/* .NET */
Color.FromArgb(255, 83, 61, 96)
/* OpenGL / Unity (0–1) */
(0.3255f, 0.2392f, 0.3765f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{83,61,96}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #533d60 85%, white);
border-color: color-mix(in oklab, #533d60 40%, transparent);
/* theme-aware in one line */
color: light-dark(#43324E, #E2DAE7);
/* relative colour syntax */
--hover: hsl(from #533d60 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: #F8F6F9;
  --brand-100: #F0EDF2;
  --brand-200: #E0D7E4;
  --brand-300: #CABAD3;
  --brand-400: #B098BE;
  --brand-500: #9576A8;
  --brand-600: #815F96;
  --brand-700: #6C4F7D;
  --brand-800: #533d60;
  --brand-900: #40314A;
  --brand-950: #281E2E;
  --brand: #533d60;
  --brand-ink: #ffffff;
  --brand-surface: #F8F6F9;
  --brand-border: #D9CDDF;
  --brand-hover: #402F4A;
  --brand-pressed: #2D2134;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #1E1622;
    --brand-ink: #E2DAE7;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F8F6F9',
        100: '#F0EDF2',
        200: '#E0D7E4',
        300: '#CABAD3',
        400: '#B098BE',
        500: '#9576A8',
        600: '#815F96',
        700: '#6C4F7D',
        800: '#533d60',
        900: '#40314A',
        950: '#281E2E',
        DEFAULT: '#533d60',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F8F6F9,
  '100': #F0EDF2,
  '200': #E0D7E4,
  '300': #CABAD3,
  '400': #B098BE,
  '500': #9576A8,
  '600': #815F96,
  '700': #6C4F7D,
  '800': #533d60,
  '900': #40314A,
  '950': #281E2E,
);
$brand-base: #533d60;
$brand-ink: #ffffff;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F8F6F9", "$type": "color" },
      "100": { "$value": "#F0EDF2", "$type": "color" },
      "200": { "$value": "#E0D7E4", "$type": "color" },
      "300": { "$value": "#CABAD3", "$type": "color" },
      "400": { "$value": "#B098BE", "$type": "color" },
      "500": { "$value": "#9576A8", "$type": "color" },
      "600": { "$value": "#815F96", "$type": "color" },
      "700": { "$value": "#6C4F7D", "$type": "color" },
      "800": { "$value": "#533d60", "$type": "color" },
      "900": { "$value": "#40314A", "$type": "color" },
      "950": { "$value": "#281E2E", "$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 #533d60 · 9.53:1
Use #ffffffAAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 9.53:1 · recommended
AA pass · AA large pass · AAA pass
Aa
Black text · 2.20:1
AA fail · AA large fail · AAA fail
Reading the other direction: #533d60 as text scores 9.53:1 on white and 2.20:1 on black.
Best tinted ink on it, if plain black or white feels flat: #F3EFF5 at 8.38: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
#533d60 · 9.53:1
AA on whitealready passes
#533d60
The quick fox
#533d60 · 9.53:1
AAA on whitealready passes
#533d60
The quick fox
#8B699F · 4.62:1
AA on black+21% L
#8B699F
The quick fox
#A88EB7 · 7.22:1
AAA on black+33% L
#A88EB7

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

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

NeutralRatioBoth directions
White9.53:1AaAa
Slate 509.11:1AaAa
Slate 1008.70:1AaAa
Slate 2007.73:1AaAa
Slate 3006.42:1AaAa
Slate 4003.72:1AaAa
Slate 5002.00:1AaAa
Slate 6001.26:1AaAa
Slate 7001.09:1AaAa
Slate 8001.54:1AaAa
Slate 9001.87:1AaAa
Black2.20:1AaAa
Colour vision deficiency
true color
protanopia · #374461
deuteranopia · #3C465F
tritanopia · #52424A

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

#F8F6F9
#F0EDF2
#E0D7E4
#CABAD3
#B098BE
#9576A8
#815F96
#6C4F7D
#533d60
#40314A
#281E2E
Base = 800Lightest = 50 · #F8F6F9Darkest = 950 · #281E2EText 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.016 312.4);
  --brand-100: oklch(0.94 0.025 312.4);
  --brand-200: oklch(0.88 0.038 312.4);
  --brand-300: oklch(0.80 0.050 312.4);
  --brand-400: oklch(0.72 0.058 312.4);
  --brand-500: oklch(0.64 0.064 312.4);
  --brand-600: oklch(0.56 0.064 312.4);
  --brand-700: oklch(0.48 0.060 312.4);
  --brand-800: oklch(0.40 0.053 312.4);
  --brand-900: oklch(0.32 0.044 312.4);
  --brand-950: oklch(0.24 0.035 312.4);
}

Colors that work with #533d60

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#F8F6F9
Tinted page background
Border#D9CDDF
Hairlines and dividers
Muted text#79598C
Captions on the surface
Accent#54633A
Second voice, not a rival
Dark variant#43324E
Hover, pressed, headers
Light variant#F3EFF5
Selected rows, tints
Dark surface#1E1622
Dark-mode background
Hover#402F4A
One step down in lightness
Pressed#2D2134
Two steps down
Disabled#8D6CA1
Chroma pulled out
Focus ring#603C75
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 #533d60

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

Works well for
  • Body text and links on white
  • Charts, tags and secondary surfaces
  • Headers, footers and dark-mode surfaces
  • Brand accents, badges and data highlights
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.

creativepremiummodernimaginative

Violet sits between the warmth of red and the calm of blue, so it reads as inventive without reading as risky. Current shorthand for software craft.

The muted chroma softens the association — it reads considered rather than loud, which suits long-form and data-heavy screens. The low lightness adds weight and formality.

Worth knowing

Deep violets swallow detail on screens with poor gamma; check it on a cheap laptop panel.

Reads as
  • FormalityHigh
  • EnergyMedium
  • Weight69/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#4A603D
Analogous left#423D60
Analogous right#603D5C
Split-complement 1#5C603D
Split-complement 2#3D6042
Triadic 1#60533D
Triadic 2#3D6053
Tetradic#60423D
On the wheel
Base+30°−30°+120°+240°+180°278°

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

RGB percentages

Red32.5%
Green23.9%
Blue37.6%
R · 0–255
83
0x53
G · 0–255
61
0x3d
B · 0–255
96
0x60

CMYK percentages

Cyan13.5%
Magenta36.5%
Yellow0.0%
Key (black)62.4%

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

Color previews

#533d60 text on a black background

contrast 2.20:1

Card sample

#533d60 text on a white background

contrast 9.53:1

Card sample

#533d60 on grey

8.70:1

#533d60 on its own surface

8.87:1

#533d60 on its dark surface

1.85:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(83, 61, 96, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(83, 61, 96, 0.45);
Border & gradient
Gradient panel
border: 3px solid #533d60;
background: linear-gradient(135deg, #533d60, #603D56);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #533d60 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(83, 61, 96, 0.5)
rgb(83 61 96 / 50%)
#533d6080
hsl(278 22% 31% / 50%)
color-mix(in srgb, #533d60 50%, transparent)
Alpha8-digit hexFlat on white
10%#533d601a#EEECEF
20%#533d6033#DDD8DF
40%#533d6066#BAB1BF
60%#533d6099#988BA0
80%#533d60cc#756480

Gradients from #533d60

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, #735585, #533d60 45%, #43324E);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #533d60, #4D3143);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #533d60, #4A603D);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #846198 0%, #533d60 45%, #43324E 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F8F6F9, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #53517F 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #73496A 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #43324E 0%, transparent 65%), #533d60;

Monochromatic scale

Palettes built from #533d60

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.

#533d60 in the real world

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

Industries
Creative toolsFintechBeautyLuxury
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

Too dim on dark surfaces at 2.20:1 — lift it to #8B699F 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.

#533d60, answered

What color is #533d60?

#533d60 is a dark soft violet, closest to Dark Slate Blue (ΔE2000 12). It sits at 278° on the hue wheel with 22% saturation and 31% lightness, which reads as neutral.

What is the RGB value of #533d60?

rgb(83, 61, 96) — 83 red, 61 green and 96 blue out of 255, or 32.5% / 23.9% / 37.6% by channel.

What is #533d60 in HSL and HSV?

hsl(278, 22%, 31%) and hsv(278, 36%, 38%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #533d60 a light or a dark color?

It is a dark color. Relative luminance is 0.0602 and perceived brightness is 29%, so white text on it reaches 9.53:1.

Should I use black or white text on #533d60?

White. It scores 9.53:1 against #533d60, versus 2.20:1 for black — AAA at any size.

Is #533d60 accessible on a white background?

#533d60 on white scores 9.53:1, which clears AAA at every size.

What is the complementary color of #533d60?

#4A603D sits directly opposite on the wheel. Softer options are the split-complements #5C603D and #3D6042, which give the same contrast with far less vibration.

What colors go well with #533d60?

For interface work: #F8F6F9 as the surface, #D9CDDF for borders, #79598C for secondary text, #54633A as an accent and #43324E for hover and pressed states. For a palette, the analogous pair #423D60 and #603D5C stays calm, while #4A603D is the loudest partner.

What is #533d60 in CMYK for printing?

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

Is #533d60 warm or cool?

Neutral — it scores 58 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #603D60; nudged cooler, #453B62.

Which Tailwind color is closest to #533d60?

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

How do I use #533d60 in Tailwind CSS?

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

rgba(83, 61, 96, 0.5), or #533d6080 in eight-digit hex. Over white that composites to #A99EB0; over black, #2A1F30.

Is #533d60 a web-safe color?

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

What does the color #533d60 mean?

As a violet, it reads creative, premium, modern. Violet sits between the warmth of red and the calm of blue, so it reads as inventive without reading as risky. Current shorthand for software craft. At this moderate chroma the association is present but not shouted.

What gradient works with #533d60?

The safest is same-hue elevation: linear-gradient(135deg, #735585, #533d60 45%, #43324E). For more colour, a short hue run to #4D3143 keeps it rich without turning muddy.

Work with #533d60 in the Color Lab

Every tool opens with this colour already loaded.

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