CSS Named Color
Copy-ready color values
HEX
#4682B4RGB
rgb(70, 130, 180)HSL
hsl(207, 44%, 49%)HSV
hsv(207, 61%, 71%)CMYK approx.
cmyk(61, 28, 0, 29)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #4682B4 | |
| RGB | rgb(70, 130, 180) | |
| HSL | hsl(207, 44%, 49%) | |
| HSV | hsv(207, 61%, 71%) | |
| CMYK approx. | cmyk(61, 28, 0, 29) | |
| CSS keyword | steelblue |
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#CA9C76Analogous
#4D82A7#4688AETriadic
#82B446#B44682Split complementary
#C6946B#98673EUsing 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"