CSS Named Color

Copy-ready color values

HEX#4682B4
RGBrgb(70, 130, 180)
HSLhsl(207, 44%, 49%)
HSVhsv(207, 61%, 71%)
CMYK approx.cmyk(61, 28, 0, 29)

Color value table

FormatValueCopy
HEX#4682B4
RGBrgb(70, 130, 180)
HSLhsl(207, 44%, 49%)
HSVhsv(207, 61%, 71%)
CMYK approx.cmyk(61, 28, 0, 29)
CSS keywordsteelblue

Contrast and classification

DarkLightness4.11:1Contrast with white5.11:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#598FBC

White 30%
#7EA8CB

White 70%
#C8DAE9

White 90%
#EDF3F8

Black 10%
#3F75A2

Black 30%
#315B7E

Black 70%
#152736

Black 90%
#070D12

Harmony palettes

Complementary

#B97D4B
#CA9C76

Analogous

#4D82A7
#4688AE

Triadic

#82B446
#B44682

Split complementary

#C6946B
#98673E

Using Steelblue

Steelblue works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.

CSS, SCSS, and Tailwind examples

:root {
  --color-steelblue: #4682b4;
}

.button-primary {
  background: var(--color-steelblue);
  color: #000000;
}

$steelblue: #4682b4;

// Tailwind arbitrary value
class="bg-[#4682b4] text-white"