Skip to content
blue · cool

#3f577b

a dark, soft blue · cool · closest name: Dark Slate Blue

Token name suggestion: Slate Sapphire

RGB
63, 87, 123
HSL
216°, 32%, 37%
CMYK
49, 29, 0, 52
Luminance
0.0930

#3f577b is a dark soft blue, 216° on the wheel and 93/100 on the cool side. Put white text on it (7.34:1). As text it scores 7.34:1 on white — safe at any size. Nearest name is Dark Slate Blue, nearest Tailwind family is slate.

hsl(216 32% 37%)rgb(63 87 123)Base step 700AAA inkCool

At a glance

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

Hex
#3f577b
Hue
216°
blue
Saturation
32%
soft
Lightness
37%
dark
Brightness
48%
HSV value
Perceived
34%
weighted brightness
Luminance
0.0930
WCAG relative
Temperature
Cool
93/100 cool
Color family
Blue
Tone
Soft
Best ink
White
7.34:1
Closest name
Dark Slate Blue
ΔE2000 11
Chroma
23.2
LCH, 0–130ish
OKLCH L
0.453
perceptual lightness
Tailwind
slate
500 · ΔE 11.7
Web-safe
#336666
nearest of 216
Where it sits
Hue216° of 360°
Saturation32%
Lightness37%
Saturation × lightness field

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

Temperature
Warm ← → Cool93% cool

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

Luminance by channel
Red11%
Green73%
Blue15%

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

Every format

HEX#3f577b
HEX (8-digit)#3f577bff
RGBrgb(63, 87, 123)
RGBArgba(63, 87, 123, 1)
HSLhsl(216, 32%, 37%)
HSV / HSBhsv(216, 49%, 48%)
HWBhwb(216 25% 52%)
CMYKcmyk(49%, 29%, 0%, 52%)
LABlab(36.6 1.6 -23.2)
LCHlch(36.6 23.2 274.0)
OKLCHoklch(0.453 0.066 258.3)
XYZ (D65)xyz(9.03, 9.30, 20.05)
Decimal4151163
Display P3color(display-p3 0.247 0.341 0.482)
Web-safe#336666

Copy-ready code

every platformclick to select
/* CSS */
color: #3f577b;
background-color: #3f577b;
/* CSS custom property */
--brand: #3f577b;
/* Tailwind (arbitrary) */
class="text-[#3f577b] bg-[#3f577b]"
/* SCSS */
$brand: #3f577b;
/* SwiftUI */
Color(red: 0.247, green: 0.341, blue: 0.482)
/* UIKit */
UIColor(red: 0.247, green: 0.341, blue: 0.482, alpha: 1)
/* Android XML */
<color name="brand">#3F577B</color>
/* Android Compose */
Color(0xFF3F577B)
/* Flutter */
Color(0xFF3F577B)
/* Python / OpenCV (BGR) */
(123, 87, 63)
/* Python / PIL (RGB) */
(63, 87, 123)
/* Java AWT */
new Color(63, 87, 123)
/* .NET */
Color.FromArgb(255, 63, 87, 123)
/* OpenGL / Unity (0–1) */
(0.2471f, 0.3412f, 0.4824f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{63,87,123}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #3f577b 85%, white);
border-color: color-mix(in oklab, #3f577b 40%, transparent);
/* theme-aware in one line */
color: light-dark(#2B3C54, #D7DEEA);
/* relative colour syntax */
--hover: hsl(from #3f577b 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: #F5F7F9;
  --brand-100: #ECEFF4;
  --brand-200: #D4DCE7;
  --brand-300: #B5C3D9;
  --brand-400: #90A5C6;
  --brand-500: #6B88B3;
  --brand-600: #5372A2;
  --brand-700: #3f577b;
  --brand-800: #374C6C;
  --brand-900: #2B3A4F;
  --brand-950: #1B2432;
  --brand: #3f577b;
  --brand-ink: #ffffff;
  --brand-surface: #F5F7FA;
  --brand-border: #C9D4E3;
  --brand-hover: #334664;
  --brand-pressed: #27364C;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #141A24;
    --brand-ink: #D7DEEA;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F5F7F9',
        100: '#ECEFF4',
        200: '#D4DCE7',
        300: '#B5C3D9',
        400: '#90A5C6',
        500: '#6B88B3',
        600: '#5372A2',
        700: '#3f577b',
        800: '#374C6C',
        900: '#2B3A4F',
        950: '#1B2432',
        DEFAULT: '#3f577b',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F5F7F9,
  '100': #ECEFF4,
  '200': #D4DCE7,
  '300': #B5C3D9,
  '400': #90A5C6,
  '500': #6B88B3,
  '600': #5372A2,
  '700': #3f577b,
  '800': #374C6C,
  '900': #2B3A4F,
  '950': #1B2432,
);
$brand-base: #3f577b;
$brand-ink: #ffffff;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F5F7F9", "$type": "color" },
      "100": { "$value": "#ECEFF4", "$type": "color" },
      "200": { "$value": "#D4DCE7", "$type": "color" },
      "300": { "$value": "#B5C3D9", "$type": "color" },
      "400": { "$value": "#90A5C6", "$type": "color" },
      "500": { "$value": "#6B88B3", "$type": "color" },
      "600": { "$value": "#5372A2", "$type": "color" },
      "700": { "$value": "#3f577b", "$type": "color" },
      "800": { "$value": "#374C6C", "$type": "color" },
      "900": { "$value": "#2B3A4F", "$type": "color" },
      "950": { "$value": "#1B2432", "$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 #3f577b · 7.34:1
Use #ffffffAAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 7.34:1 · recommended
AA pass · AA large pass · AAA pass
Aa
Black text · 2.86:1
AA fail · AA large fail · AAA fail
Reading the other direction: #3f577b as text scores 7.34:1 on white and 2.86:1 on black.
Best tinted ink on it, if plain black or white feels flat: #EEF1F6 at 6.48: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
#3f577b · 7.34:1
AA on whitealready passes
#3f577b
The quick fox
#3f577b · 7.34:1
AAA on whitealready passes
#3f577b
The quick fox
#5576A7 · 4.54:1
AA on black+13% L
#5576A7
The quick fox
#8099BE · 7.22:1
AAA on black+26% L
#8099BE

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

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

NeutralRatioBoth directions
White7.34:1AaAa
Slate 507.02:1AaAa
Slate 1006.70:1AaAa
Slate 2005.95:1AaAa
Slate 3004.94:1AaAa
Slate 4002.86:1AaAa
Slate 5001.54:1AaAa
Slate 6001.03:1AaAa
Slate 7001.41:1AaAa
Slate 8001.99:1AaAa
Slate 9002.43:1AaAa
Black2.86:1AaAa
Colour vision deficiency
true color
protanopia · #49597D
deuteranopia · #42537A
tritanopia · #265F64

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

#F5F7F9
#ECEFF4
#D4DCE7
#B5C3D9
#90A5C6
#6B88B3
#5372A2
#3f577b
#374C6C
#2B3A4F
#1B2432
Base = 700Lightest = 50 · #F5F7F9Darkest = 950 · #1B2432Text 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.017 258.3);
  --brand-100: oklch(0.94 0.026 258.3);
  --brand-200: oklch(0.88 0.040 258.3);
  --brand-300: oklch(0.80 0.052 258.3);
  --brand-400: oklch(0.72 0.061 258.3);
  --brand-500: oklch(0.64 0.066 258.3);
  --brand-600: oklch(0.56 0.066 258.3);
  --brand-700: oklch(0.48 0.062 258.3);
  --brand-800: oklch(0.40 0.056 258.3);
  --brand-900: oklch(0.32 0.046 258.3);
  --brand-950: oklch(0.24 0.036 258.3);
}

Colors that work with #3f577b

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#F5F7FA
Tinted page background
Border#C9D4E3
Hairlines and dividers
Muted text#4E6B98
Captions on the surface
Accent#7F533B
Second voice, not a rival
Dark variant#2B3C54
Hover, pressed, headers
Light variant#EEF1F6
Selected rows, tints
Dark surface#141A24
Dark-mode background
Hover#334664
One step down in lightness
Pressed#27364C
Two steps down
Disabled#7E91AC
Chroma pulled out
Focus ring#3C5F93
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 #3f577b

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.

trustedcalmcompetentcorporate

The default of institutions for a reason: blue is read as stable and safe across nearly every culture that has been surveyed.

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

It is also the most crowded hue on the web. Distinctiveness has to come from your other choices.

Reads as
  • FormalityHigh
  • EnergyMedium
  • Weight64/100
  • TemperatureCool
  • ApproachabilityReserved

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#7B633F
Analogous left#3F757B
Analogous right#453F7B
Split-complement 1#7B453F
Split-complement 2#757B3F
Triadic 1#7B3F57
Triadic 2#577B3F
Tetradic#7B3F75
On the wheel
Base+30°−30°+120°+240°+180°216°

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

RGB percentages

Red24.7%
Green34.1%
Blue48.2%
R · 0–255
63
0x3f
G · 0–255
87
0x57
B · 0–255
123
0x7b

CMYK percentages

Cyan48.8%
Magenta29.3%
Yellow0.0%
Key (black)51.8%

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

Color previews

#3f577b text on a black background

contrast 2.86:1

Card sample

#3f577b text on a white background

contrast 7.34:1

Card sample

#3f577b on grey

6.70:1

#3f577b on its own surface

6.84:1

#3f577b on its dark surface

2.38:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(63, 87, 123, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(63, 87, 123, 0.45);
Border & gradient
Gradient panel
border: 3px solid #3f577b;
background: linear-gradient(135deg, #3f577b, #4F3F7B);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #3f577b 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(63, 87, 123, 0.5)
rgb(63 87 123 / 50%)
#3f577b80
hsl(216 32% 37% / 50%)
color-mix(in srgb, #3f577b 50%, transparent)
Alpha8-digit hexFlat on white
10%#3f577b1a#ECEEF2
20%#3f577b33#D9DDE5
40%#3f577b66#B2BCCA
60%#3f577b99#8C9AB0
80%#3f577bcc#657995

Gradients from #3f577b

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, #5474A4, #3f577b 45%, #2B3C54);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #3f577b, #463567);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #3f577b, #7B633F);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #6583B0 0%, #3f577b 45%, #2B3C54 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F5F7FA, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #509C9D 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #56498F 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #2B3C54 0%, transparent 65%), #3f577b;

Monochromatic scale

Palettes built from #3f577b

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.

#3f577b in the real world

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

Industries
TechnologyFinanceHealthcareEnterprise SaaS
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.86:1 — lift it to #5576A7 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.

#3f577b, answered

What color is #3f577b?

#3f577b is a dark soft blue, closest to Dark Slate Blue (ΔE2000 11). It sits at 216° on the hue wheel with 32% saturation and 37% lightness, which reads as cool.

What is the RGB value of #3f577b?

rgb(63, 87, 123) — 63 red, 87 green and 123 blue out of 255, or 24.7% / 34.1% / 48.2% by channel.

What is #3f577b in HSL and HSV?

hsl(216, 32%, 37%) and hsv(216, 49%, 48%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #3f577b a light or a dark color?

It is a dark color. Relative luminance is 0.0930 and perceived brightness is 34%, so white text on it reaches 7.34:1.

Should I use black or white text on #3f577b?

White. It scores 7.34:1 against #3f577b, versus 2.86:1 for black — AAA at any size.

Is #3f577b accessible on a white background?

#3f577b on white scores 7.34:1, which clears AAA at every size.

What is the complementary color of #3f577b?

#7B633F sits directly opposite on the wheel. Softer options are the split-complements #7B453F and #757B3F, which give the same contrast with far less vibration.

What colors go well with #3f577b?

For interface work: #F5F7FA as the surface, #C9D4E3 for borders, #4E6B98 for secondary text, #7F533B as an accent and #2B3C54 for hover and pressed states. For a palette, the analogous pair #3F757B and #453F7B stays calm, while #7B633F is the loudest partner.

What is #3f577b in CMYK for printing?

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

Is #3f577b warm or cool?

Cool — it scores 93 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #3F417B; nudged cooler, #354E6C.

Which Tailwind color is closest to #3f577b?

The slate family — its 500 step is #64748b, ΔE2000 11.7 away. That is a visible difference, so define #3f577b as a custom token rather than reaching for the built-in.

How do I use #3f577b in Tailwind CSS?

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

rgba(63, 87, 123, 0.5), or #3f577b80 in eight-digit hex. Over white that composites to #9FABBD; over black, #202C3E.

Is #3f577b a web-safe color?

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

What does the color #3f577b mean?

As a blue, it reads trusted, calm, competent. The default of institutions for a reason: blue is read as stable and safe across nearly every culture that has been surveyed. At this moderate chroma the association is present but not shouted.

What gradient works with #3f577b?

The safest is same-hue elevation: linear-gradient(135deg, #5474A4, #3f577b 45%, #2B3C54). For more colour, a short hue run to #463567 keeps it rich without turning muddy.

Work with #3f577b in the Color Lab

Every tool opens with this colour already loaded.

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