Skip to content
blue · cool

#498abc

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

Token name suggestion: True Denim

RGB
73, 138, 188
HSL
206°, 46%, 51%
CMYK
61, 27, 0, 26
Luminance
0.2322

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

hsl(206 46% 51%)rgb(73 138 188)Base step 600AA inkCool

At a glance

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

Hex
#498abc
Hue
206°
blue
Saturation
46%
vivid
Lightness
51%
balanced
Brightness
74%
HSV value
Perceived
51%
weighted brightness
Luminance
0.2322
WCAG relative
Temperature
Cool
98/100 cool
Color family
Blue
Tone
Vivid
Best ink
Black
5.64:1
Closest name
Steel Blue
ΔE2000 2.9
Chroma
32.8
LCH, 0–130ish
OKLCH L
0.612
perceptual lightness
Tailwind
blue
500 · ΔE 7.1
Web-safe
#3399CC
nearest of 216
Where it sits
Hue206° of 360°
Saturation46%
Lightness51%
Saturation × lightness field

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

Temperature
Warm ← → Cool98% 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
Red6%
Green78%
Blue16%

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

Every format

HEX#498abc
HEX (8-digit)#498abcff
RGBrgb(73, 138, 188)
RGBArgba(73, 138, 188, 1)
HSLhsl(206, 46%, 51%)
HSV / HSBhsv(206, 61%, 74%)
HWBhwb(206 29% 26%)
CMYKcmyk(61%, 27%, 0%, 26%)
LABlab(55.3 -5.5 -32.3)
LCHlch(55.3 32.8 260.4)
OKLCHoklch(0.612 0.101 243.8)
XYZ (D65)xyz(20.91, 23.22, 50.95)
Decimal4819644
Display P3color(display-p3 0.286 0.541 0.737)
Web-safe#3399CC

Copy-ready code

every platformclick to select
/* CSS */
color: #498abc;
background-color: #498abc;
/* CSS custom property */
--brand: #498abc;
/* Tailwind (arbitrary) */
class="text-[#498abc] bg-[#498abc]"
/* SCSS */
$brand: #498abc;
/* SwiftUI */
Color(red: 0.286, green: 0.541, blue: 0.737)
/* UIKit */
UIColor(red: 0.286, green: 0.541, blue: 0.737, alpha: 1)
/* Android XML */
<color name="brand">#498ABC</color>
/* Android Compose */
Color(0xFF498ABC)
/* Flutter */
Color(0xFF498ABC)
/* Python / OpenCV (BGR) */
(188, 138, 73)
/* Python / PIL (RGB) */
(73, 138, 188)
/* Java AWT */
new Color(73, 138, 188)
/* .NET */
Color.FromArgb(255, 73, 138, 188)
/* OpenGL / Unity (0–1) */
(0.2863f, 0.5412f, 0.7373f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{73,138,188}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #498abc 85%, white);
border-color: color-mix(in oklab, #498abc 40%, transparent);
/* theme-aware in one line */
color: light-dark(#22445D, #D3E2EE);
/* relative colour syntax */
--hover: hsl(from #498abc 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: #F5F8FA;
  --brand-100: #EAF0F5;
  --brand-200: #D0E0EB;
  --brand-300: #ADCAE1;
  --brand-400: #84B0D2;
  --brand-500: #5B96C3;
  --brand-600: #498abc;
  --brand-700: #376C95;
  --brand-800: #2C5777;
  --brand-900: #234157;
  --brand-950: #162837;
  --brand: #498abc;
  --brand-ink: #000000;
  --brand-surface: #F4F8FA;
  --brand-border: #C3D9E9;
  --brand-hover: #3D77A5;
  --brand-pressed: #33658B;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #141D24;
    --brand-ink: #D3E2EE;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F5F8FA',
        100: '#EAF0F5',
        200: '#D0E0EB',
        300: '#ADCAE1',
        400: '#84B0D2',
        500: '#5B96C3',
        600: '#498abc',
        700: '#376C95',
        800: '#2C5777',
        900: '#234157',
        950: '#162837',
        DEFAULT: '#498abc',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F5F8FA,
  '100': #EAF0F5,
  '200': #D0E0EB,
  '300': #ADCAE1,
  '400': #84B0D2,
  '500': #5B96C3,
  '600': #498abc,
  '700': #376C95,
  '800': #2C5777,
  '900': #234157,
  '950': #162837,
);
$brand-base: #498abc;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F5F8FA", "$type": "color" },
      "100": { "$value": "#EAF0F5", "$type": "color" },
      "200": { "$value": "#D0E0EB", "$type": "color" },
      "300": { "$value": "#ADCAE1", "$type": "color" },
      "400": { "$value": "#84B0D2", "$type": "color" },
      "500": { "$value": "#5B96C3", "$type": "color" },
      "600": { "$value": "#498abc", "$type": "color" },
      "700": { "$value": "#376C95", "$type": "color" },
      "800": { "$value": "#2C5777", "$type": "color" },
      "900": { "$value": "#234157", "$type": "color" },
      "950": { "$value": "#162837", "$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 #498abc · 5.64:1
Use #000000AA at every size, AAA for large text only.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 3.72:1
AA fail · AA large pass · AAA fail
Aa
Black text · 5.64:1 · recommended
AA pass · AA large pass · AAA fail
Reading the other direction: #498abc as text scores 3.72:1 on white and 5.64:1 on black.
Best tinted ink on it, if plain black or white feels flat: #22445D at 2.75: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
#3E7AA9 · 4.60:1
AA on white−6% L
#3E7AA9
The quick fox
#2F5C80 · 7.09:1
AAA on white−17% L
#2F5C80
The quick fox
#498abc · 5.64:1
AA on blackalready passes
#498abc
The quick fox
#639BC6 · 7.03:1
AAA on black+7% L
#639BC6

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

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

NeutralRatioBoth directions
White3.72:1AaAa
Slate 503.56:1AaAa
Slate 1003.40:1AaAa
Slate 2003.02:1AaAa
Slate 3002.51:1AaAa
Slate 4001.45:1AaAa
Slate 5001.28:1AaAa
Slate 6002.04:1AaAa
Slate 7002.78:1AaAa
Slate 8003.93:1AaAa
Slate 9004.80:1AaAa
Black5.64:1AaAa
Colour vision deficiency
true color
protanopia · #748BBE
deuteranopia · #647FBB
tritanopia · #00969B

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. #498abc 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.

#F5F8FA
#EAF0F5
#D0E0EB
#ADCAE1
#84B0D2
#5B96C3
#498abc
#376C95
#2C5777
#234157
#162837
Base = 600Lightest = 50 · #F5F8FADarkest = 950 · #162837Text 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.025 243.8);
  --brand-100: oklch(0.94 0.041 243.8);
  --brand-200: oklch(0.88 0.061 243.8);
  --brand-300: oklch(0.80 0.079 243.8);
  --brand-400: oklch(0.72 0.093 243.8);
  --brand-500: oklch(0.64 0.101 243.8);
  --brand-600: oklch(0.56 0.101 243.8);
  --brand-700: oklch(0.48 0.095 243.8);
  --brand-800: oklch(0.40 0.085 243.8);
  --brand-900: oklch(0.32 0.071 243.8);
  --brand-950: oklch(0.24 0.056 243.8);
}

Colors that work with #498abc

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#F4F8FA
Tinted page background
Border#C3D9E9
Hairlines and dividers
Muted text#4B789B
Captions on the surface
Accent#C15B44
Second voice, not a rival
Dark variant#22445D
Hover, pressed, headers
Light variant#ECF3F8
Selected rows, tints
Dark surface#141D24
Dark-mode background
Hover#3D77A5
One step down in lightness
Pressed#33658B
Two steps down
Disabled#ACBDCA
Chroma pulled out
Focus ring#4D95CD
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 #498abc

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 #22445D
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
  • Weight49/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#BC7B49
Analogous left#49BCB5
Analogous right#4951BC
Split-complement 1#BC4951
Split-complement 2#BCB549
Triadic 1#BC498A
Triadic 2#8ABC49
Tetradic#B549BC
On the wheel
Base+30°−30°+120°+240°+180°206°

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

RGB percentages

Red28.6%
Green54.1%
Blue73.7%
R · 0–255
73
0x49
G · 0–255
138
0x8a
B · 0–255
188
0xbc

CMYK percentages

Cyan61.2%
Magenta26.6%
Yellow0.0%
Key (black)26.3%

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

Color previews

#498abc text on a black background

contrast 5.64:1

Card sample

#498abc text on a white background

contrast 3.72:1

Card sample

#498abc on grey

3.40:1

#498abc on its own surface

3.48:1

#498abc on its dark surface

4.59:1

CSS3 live lab

Text font color

The quick brown fox

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

Glowing headline

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

Soft neon halo

text-shadow: 0 0 14px rgba(73, 138, 188, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(73, 138, 188, 0.45);
Border & gradient
Gradient panel
border: 3px solid #498abc;
background: linear-gradient(135deg, #498abc, #5549BC);
Gradient text

Gradient headline

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

Marked up text

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

Transparency

What each alpha value actually composites to. The top row is #498abc 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(73, 138, 188, 0.5)
rgb(73 138 188 / 50%)
#498abc80
hsl(206 46% 51% / 50%)
color-mix(in srgb, #498abc 50%, transparent)
Alpha8-digit hexFlat on white
10%#498abc1a#EDF3F8
20%#498abc33#DBE8F2
40%#498abc66#B6D0E4
60%#498abc99#92B9D7
80%#498abccc#6DA1C9

Gradients from #498abc

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, #76A7CD, #498abc 45%, #22445D);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #498abc, #523EA9);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #498abc, #BC7B49);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #8CB5D5 0%, #498abc 45%, #22445D 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F4F8FA, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #6ECABC 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #615FC4 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #22445D 0%, transparent 65%), #498abc;

Monochromatic scale

Palettes built from #498abc

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.

#498abc 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 5.64: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.

#498abc, answered

What color is #498abc?

#498abc is a balanced vivid blue, closest to Steel Blue (ΔE2000 2.9). It sits at 206° on the hue wheel with 46% saturation and 51% lightness, which reads as cool.

What is the RGB value of #498abc?

rgb(73, 138, 188) — 73 red, 138 green and 188 blue out of 255, or 28.6% / 54.1% / 73.7% by channel.

What is #498abc in HSL and HSV?

hsl(206, 46%, 51%) and hsv(206, 61%, 74%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #498abc a light or a dark color?

It is a mid-tone. Relative luminance is 0.2322 and perceived brightness is 51%, so black text on it reaches 5.64:1.

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

Black. It scores 5.64:1 against #498abc, versus 3.72:1 for white — AA at any size.

Is #498abc accessible on a white background?

#498abc on white scores 3.72:1, which only clears AA for large text — 18.66px bold or 24px regular and up. Darken it to #3E7AA9 to reach 4.5:1, or #2F5C80 for 7:1.

What is the complementary color of #498abc?

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

What colors go well with #498abc?

For interface work: #F4F8FA as the surface, #C3D9E9 for borders, #4B789B for secondary text, #C15B44 as an accent and #22445D for hover and pressed states. For a palette, the analogous pair #49BCB5 and #4951BC stays calm, while #BC7B49 is the loudest partner.

What is #498abc in CMYK for printing?

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

Is #498abc warm or cool?

Cool — it scores 98 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #4960BC; nudged cooler, #3D77AF.

Which Tailwind color is closest to #498abc?

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

How do I use #498abc in Tailwind CSS?

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

rgba(73, 138, 188, 0.5), or #498abc80 in eight-digit hex. Over white that composites to #A4C5DE; over black, #25455E.

Is #498abc a web-safe color?

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

What does the color #498abc 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 #498abc?

The safest is same-hue elevation: linear-gradient(135deg, #76A7CD, #498abc 45%, #22445D). For more colour, a short hue run to #523EA9 keeps it rich without turning muddy.

Work with #498abc in the Color Lab

Every tool opens with this colour already loaded.

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