Web Safe Color
Copy-ready color values
HEX
#3366FFRGB
rgb(51, 102, 255)HSL
hsl(225, 100%, 60%)HSV
hsv(225, 80%, 100%)CMYK approx.
cmyk(80, 60, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3366FF | |
| RGB | rgb(51, 102, 255) | |
| HSL | hsl(225, 100%, 60%) | |
| HSV | hsv(225, 80%, 100%) | |
| CMYK approx. | cmyk(80, 60, 0, 0) | |
| CSS keyword | 3366ff |
Contrast and classification
LightLightness4.68:1Contrast with white4.49:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#4775FF
White 30%#7094FF
White 70%#C2D1FF
White 90%#EBF0FF
Black 10%#2E5CE6
Black 30%#2447B3
Black 70%#0F1F4D
Black 90%#050A1A
Harmony palettes
Complementary
#CC9900#D8B13DAnalogous
#3966E7#3378EDTriadic
#66FF33#FF3366Split complementary
#D5AB2E#A77D00Using 3366ff
3366ff 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-3366ff: #3366ff;
}
.button-primary {
background: var(--color-3366ff);
color: #ffffff;
}
$3366ff: #3366ff;
// Tailwind arbitrary value
class="bg-[#3366ff] text-white"