Skip to content
blue · cool

#387abc

a balanced, vivid blue · cool · closest name: Steel Blue

Token name suggestion: True Denim

RGB
56, 122, 188
HSL
210°, 54%, 48%
CMYK
70, 35, 0, 26
Luminance
0.1839

#387abc is a balanced vivid blue, 210° on the wheel and 100/100 on the cool side. Put black text on it (4.68:1). As text it scores 4.49:1 on white — large text only. Nearest name is Steel Blue, nearest Tailwind family is blue.

hsl(210 54% 48%)rgb(56 122 188)Base step 600AA inkCool

At a glance

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

Hex
#387abc
Hue
210°
blue
Saturation
54%
vivid
Lightness
48%
balanced
Brightness
74%
HSV value
Perceived
46%
weighted brightness
Luminance
0.1839
WCAG relative
Temperature
Cool
100/100 cool
Color family
Blue
Tone
Vivid
Best ink
Black
4.68:1
Closest name
Steel Blue
ΔE2000 3.5
Chroma
40.8
LCH, 0–130ish
OKLCH L
0.568
perceptual lightness
Tailwind
blue
500 · ΔE 7.2
Web-safe
#3366CC
nearest of 216
Where it sits
Hue210° of 360°
Saturation54%
Lightness48%
Saturation × lightness field

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

Temperature
Warm ← → Cool100% 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
Red5%
Green76%
Blue20%

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

Every format

HEX#387abc
HEX (8-digit)#387abcff
RGBrgb(56, 122, 188)
RGBArgba(56, 122, 188, 1)
HSLhsl(210, 54%, 48%)
HSV / HSBhsv(210, 70%, 74%)
HWBhwb(210 22% 26%)
CMYKcmyk(70%, 35%, 0%, 26%)
LABlab(50.0 1.0 -40.8)
LCHlch(50.0 40.8 271.4)
OKLCHoklch(0.568 0.122 250.9)
XYZ (D65)xyz(17.66, 18.39, 50.19)
Decimal3701436
Display P3color(display-p3 0.220 0.478 0.737)
Web-safe#3366CC

Copy-ready code

every platformclick to select
/* CSS */
color: #387abc;
background-color: #387abc;
/* CSS custom property */
--brand: #387abc;
/* Tailwind (arbitrary) */
class="text-[#387abc] bg-[#387abc]"
/* SCSS */
$brand: #387abc;
/* SwiftUI */
Color(red: 0.220, green: 0.478, blue: 0.737)
/* UIKit */
UIColor(red: 0.220, green: 0.478, blue: 0.737, alpha: 1)
/* Android XML */
<color name="brand">#387ABC</color>
/* Android Compose */
Color(0xFF387ABC)
/* Flutter */
Color(0xFF387ABC)
/* Python / OpenCV (BGR) */
(188, 122, 56)
/* Python / PIL (RGB) */
(56, 122, 188)
/* Java AWT */
new Color(56, 122, 188)
/* .NET */
Color.FromArgb(255, 56, 122, 188)
/* OpenGL / Unity (0–1) */
(0.2196f, 0.4784f, 0.7373f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{56,122,188}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #387abc 85%, white);
border-color: color-mix(in oklab, #387abc 40%, transparent);
/* theme-aware in one line */
color: light-dark(#1D4062, #D3E0EE);
/* relative colour syntax */
--hover: hsl(from #387abc 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: #F4F7FB;
  --brand-100: #E9F0F6;
  --brand-200: #CEDEEE;
  --brand-300: #A9C7E5;
  --brand-400: #7DABD8;
  --brand-500: #528FCC;
  --brand-600: #387abc;
  --brand-700: #2F669D;
  --brand-800: #25527E;
  --brand-900: #1F3D5C;
  --brand-950: #132639;
  --brand: #387abc;
  --brand-ink: #000000;
  --brand-surface: #F4F7FA;
  --brand-border: #C0D6EC;
  --brand-hover: #3068A0;
  --brand-pressed: #285685;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #141C24;
    --brand-ink: #D3E0EE;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F4F7FB',
        100: '#E9F0F6',
        200: '#CEDEEE',
        300: '#A9C7E5',
        400: '#7DABD8',
        500: '#528FCC',
        600: '#387abc',
        700: '#2F669D',
        800: '#25527E',
        900: '#1F3D5C',
        950: '#132639',
        DEFAULT: '#387abc',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F4F7FB,
  '100': #E9F0F6,
  '200': #CEDEEE,
  '300': #A9C7E5,
  '400': #7DABD8,
  '500': #528FCC,
  '600': #387abc,
  '700': #2F669D,
  '800': #25527E,
  '900': #1F3D5C,
  '950': #132639,
);
$brand-base: #387abc;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F4F7FB", "$type": "color" },
      "100": { "$value": "#E9F0F6", "$type": "color" },
      "200": { "$value": "#CEDEEE", "$type": "color" },
      "300": { "$value": "#A9C7E5", "$type": "color" },
      "400": { "$value": "#7DABD8", "$type": "color" },
      "500": { "$value": "#528FCC", "$type": "color" },
      "600": { "$value": "#387abc", "$type": "color" },
      "700": { "$value": "#2F669D", "$type": "color" },
      "800": { "$value": "#25527E", "$type": "color" },
      "900": { "$value": "#1F3D5C", "$type": "color" },
      "950": { "$value": "#132639", "$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 #387abc · 4.68:1
Use #000000AA at every size, AAA for large text only.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 4.49:1
AA fail · AA large pass · AAA fail
Aa
Black text · 4.68:1 · recommended
AA pass · AA large pass · AAA fail
Reading the other direction: #387abc as text scores 4.49:1 on white and 4.68:1 on black.
Best tinted ink on it, if plain black or white feels flat: #1D4062 at 2.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
#3777B8 · 4.67:1
AA on white−1% L
#3777B8
The quick fox
#2A5B8D · 7.05:1
AAA on white−12% L
#2A5B8D
The quick fox
#387abc · 4.68:1
AA on blackalready passes
#387abc
The quick fox
#659BD1 · 7.16:1
AAA on black+13% L
#659BD1

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

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

NeutralRatioBoth directions
White4.49:1AaAa
Slate 504.29:1AaAa
Slate 1004.10:1AaAa
Slate 2003.64:1AaAa
Slate 3003.02:1AaAa
Slate 4001.75:1AaAa
Slate 5001.06:1AaAa
Slate 6001.69:1AaAa
Slate 7002.31:1AaAa
Slate 8003.26:1AaAa
Slate 9003.98:1AaAa
Black4.68:1AaAa
Colour vision deficiency
true color
protanopia · #5C7EBF
deuteranopia · #4971BB
tritanopia · #008A92

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

#F4F7FB
#E9F0F6
#CEDEEE
#A9C7E5
#7DABD8
#528FCC
#387abc
#2F669D
#25527E
#1F3D5C
#132639
Base = 600Lightest = 50 · #F4F7FBDarkest = 950 · #132639Text 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.031 250.9);
  --brand-100: oklch(0.94 0.049 250.9);
  --brand-200: oklch(0.88 0.073 250.9);
  --brand-300: oklch(0.80 0.096 250.9);
  --brand-400: oklch(0.72 0.113 250.9);
  --brand-500: oklch(0.64 0.122 250.9);
  --brand-600: oklch(0.56 0.122 250.9);
  --brand-700: oklch(0.48 0.115 250.9);
  --brand-800: oklch(0.40 0.103 250.9);
  --brand-900: oklch(0.32 0.086 250.9);
  --brand-950: oklch(0.24 0.067 250.9);
}

Colors that work with #387abc

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#F4F7FA
Tinted page background
Border#C0D6EC
Hairlines and dividers
Muted text#4B739B
Captions on the surface
Accent#C15633
Second voice, not a rival
Dark variant#1D4062
Hover, pressed, headers
Light variant#EBF2F9
Selected rows, tints
Dark surface#141C24
Dark-mode background
Hover#3068A0
One step down in lightness
Pressed#285685
Two steps down
Disabled#A1B2C3
Chroma pulled out
Focus ring#3584D3
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 #387abc

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
  • Primary buttons and calls to action
  • Focus rings, active and selected states
  • Brand accents, badges and data highlights
  • Chart series and data categories
Use with care
  • Small text on white — under 4.5:1
  • Full-page backgrounds — tiring over long sessions
  • 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 #1D4062
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.

This is a confident chroma: strong enough to lead a brand, restrained enough to live in an interface all day. The mid lightness keeps it versatile in both themes.

Worth knowing

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

Reads as
  • FormalityMedium
  • EnergyMedium-high
  • Weight52/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#BC7A38
Analogous left#38BCBC
Analogous right#3838BC
Split-complement 1#BC3838
Split-complement 2#BCBC38
Triadic 1#BC387A
Triadic 2#7ABC38
Tetradic#BC38BC
On the wheel
Base+30°−30°+120°+240°+180°210°

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

RGB percentages

Red22.0%
Green47.8%
Blue73.7%
R · 0–255
56
0x38
G · 0–255
122
0x7a
B · 0–255
188
0xbc

CMYK percentages

Cyan70.2%
Magenta35.1%
Yellow0.0%
Key (black)26.3%

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

Color previews

#387abc text on a black background

contrast 4.68:1

Card sample

#387abc text on a white background

contrast 4.49:1

Card sample

#387abc on grey

4.10:1

#387abc on its own surface

4.18:1

#387abc on its dark surface

3.83:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(56, 122, 188, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(56, 122, 188, 0.45);
Border & gradient
Gradient panel
border: 3px solid #387abc;
background: linear-gradient(135deg, #387abc, #4E38BC);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #387abc 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(56, 122, 188, 0.5)
rgb(56 122 188 / 50%)
#387abc80
hsl(210 54% 48% / 50%)
color-mix(in srgb, #387abc 50%, transparent)
Alpha8-digit hexFlat on white
10%#387abc1a#EBF2F8
20%#387abc33#D7E4F2
40%#387abc66#AFCAE4
60%#387abc99#88AFD7
80%#387abccc#6095C9

Gradients from #387abc

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, #6198D0, #387abc 45%, #1D4062);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #387abc, #4E31A4);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #387abc, #BC7A38);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #79A8D7 0%, #387abc 45%, #1D4062 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F4F7FA, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #59CEC4 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #5449C9 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #1D4062 0%, transparent 65%), #387abc;

Monochromatic scale

Palettes built from #387abc

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.

#387abc 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

Usable as-is on a dark surface at 4.68: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.

#387abc, answered

What color is #387abc?

#387abc is a balanced vivid blue, closest to Steel Blue (ΔE2000 3.5). It sits at 210° on the hue wheel with 54% saturation and 48% lightness, which reads as cool.

What is the RGB value of #387abc?

rgb(56, 122, 188) — 56 red, 122 green and 188 blue out of 255, or 22% / 47.8% / 73.7% by channel.

What is #387abc in HSL and HSV?

hsl(210, 54%, 48%) and hsv(210, 70%, 74%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #387abc a light or a dark color?

It is a mid-tone. Relative luminance is 0.1839 and perceived brightness is 46%, so black text on it reaches 4.68:1.

Should I use black or white text on #387abc?

Black. It scores 4.68:1 against #387abc, versus 4.49:1 for white — AA at any size.

Is #387abc accessible on a white background?

#387abc on white scores 4.49:1, which only clears AA for large text — 18.66px bold or 24px regular and up. Darken it to #3777B8 to reach 4.5:1, or #2A5B8D for 7:1.

What is the complementary color of #387abc?

#BC7A38 sits directly opposite on the wheel. Softer options are the split-complements #BC3838 and #BCBC38, which give the same contrast with far less vibration.

What colors go well with #387abc?

For interface work: #F4F7FA as the surface, #C0D6EC for borders, #4B739B for secondary text, #C15633 as an accent and #1D4062 for hover and pressed states. For a palette, the analogous pair #38BCBC and #3838BC stays calm, while #BC7A38 is the loudest partner.

What is #387abc in CMYK for printing?

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

Is #387abc warm or cool?

Cool — it scores 100 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #384ABC; nudged cooler, #306BAA.

Which Tailwind color is closest to #387abc?

The blue family — its 500 step is #3b82f6, ΔE2000 7.2 away. That is a visible difference, so define #387abc as a custom token rather than reaching for the built-in.

How do I use #387abc in Tailwind CSS?

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

rgba(56, 122, 188, 0.5), or #387abc80 in eight-digit hex. Over white that composites to #9CBDDE; over black, #1C3D5E.

Is #387abc a web-safe color?

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

What does the color #387abc 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 chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #387abc?

The safest is same-hue elevation: linear-gradient(135deg, #6198D0, #387abc 45%, #1D4062). For more colour, a short hue run to #4E31A4 keeps it rich without turning muddy.

Work with #387abc in the Color Lab

Every tool opens with this colour already loaded.

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