Web Safe Color
Copy-ready color values
HEX
#0066CCRGB
rgb(0, 102, 204)HSL
hsl(210, 100%, 40%)HSV
hsv(210, 100%, 80%)CMYK approx.
cmyk(100, 50, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #0066CC | |
| RGB | rgb(0, 102, 204) | |
| HSL | hsl(210, 100%, 40%) | |
| HSV | hsv(210, 100%, 80%) | |
| CMYK approx. | cmyk(100, 50, 0, 20) | |
| CSS keyword | 0066cc |
Contrast and classification
DarkLightness5.57:1Contrast with white3.77:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#1A75D1
White 30%#4D94DB
White 70%#B3D1F0
White 90%#E6F0FA
Black 10%#005CB8
Black 30%#00478F
Black 70%#001F3D
Black 90%#000A14
Harmony palettes
Complementary
#FF9933#FFB164Analogous
#0C66B4#0072C0Triadic
#66CC00#CC0066Split complementary
#FFAB58#D17D2AUsing 0066cc
0066cc 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-0066cc: #0066cc;
}
.button-primary {
background: var(--color-0066cc);
color: #ffffff;
}
$0066cc: #0066cc;
// Tailwind arbitrary value
class="bg-[#0066cc] text-white"