CSS Named Color
Copy-ready color values
HEX
#1E90FFRGB
rgb(30, 144, 255)HSL
hsl(210, 100%, 56%)HSV
hsv(210, 88%, 100%)CMYK approx.
cmyk(88, 44, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #1E90FF | |
| RGB | rgb(30, 144, 255) | |
| HSL | hsl(210, 100%, 56%) | |
| HSV | hsv(210, 88%, 100%) | |
| CMYK approx. | cmyk(88, 44, 0, 0) | |
| CSS keyword | dodgerblue |
Contrast and classification
LightLightness3.24:1Contrast with white6.49:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#359BFF
White 30%#62B1FF
White 70%#BCDEFF
White 90%#E9F4FF
Black 10%#1B82E6
Black 30%#1565B3
Black 70%#092B4D
Black 90%#030E1A
Harmony palettes
Complementary
#E16F00#E8923DAnalogous
#2C90E4#1E9DF2Triadic
#90FF1E#FF1E90Split complementary
#E6892E#B95B00Using Dodgerblue
Dodgerblue 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-dodgerblue: #1e90ff;
}
.button-primary {
background: var(--color-dodgerblue);
color: #000000;
}
$dodgerblue: #1e90ff;
// Tailwind arbitrary value
class="bg-[#1e90ff] text-white"