CSS Named Color
Copy-ready color values
HEX
#00BFFFRGB
rgb(0, 191, 255)HSL
hsl(195, 100%, 50%)HSV
hsv(195, 100%, 100%)CMYK approx.
cmyk(100, 25, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00BFFF | |
| RGB | rgb(0, 191, 255) | |
| HSL | hsl(195, 100%, 50%) | |
| HSV | hsv(195, 100%, 100%) | |
| CMYK approx. | cmyk(100, 25, 0, 0) | |
| CSS keyword | deepskyblue |
Contrast and classification
DarkLightness2.12:1Contrast with white9.90:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#1AC5FF
White 30%#4DD2FF
White 70%#B3ECFF
White 90%#E6F9FF
Black 10%#00ACE6
Black 30%#0086B3
Black 70%#00394D
Black 90%#00131A
Harmony palettes
Complementary
#FF4000#FF6E3DAnalogous
#17BFE0#00C7F7Triadic
#BFFF00#FF00BFSplit complementary
#FF622E#D13400Using Deepskyblue
Deepskyblue 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-deepskyblue: #00bfff;
}
.button-primary {
background: var(--color-deepskyblue);
color: #000000;
}
$deepskyblue: #00bfff;
// Tailwind arbitrary value
class="bg-[#00bfff] text-white"