Web Safe Color
Copy-ready color values
HEX
#9999FFRGB
rgb(153, 153, 255)HSL
hsl(240, 100%, 80%)HSV
hsv(240, 40%, 100%)CMYK approx.
cmyk(40, 40, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9999FF | |
| RGB | rgb(153, 153, 255) | |
| HSL | hsl(240, 100%, 80%) | |
| HSV | hsv(240, 40%, 100%) | |
| CMYK approx. | cmyk(40, 40, 0, 0) | |
| CSS keyword | 9999ff |
Contrast and classification
LightLightness2.51:1Contrast with white8.35:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#A3A3FF
White 30%#B8B8FF
White 70%#E0E0FF
White 90%#F5F5FF
Black 10%#8A8AE6
Black 30%#6B6BB3
Black 70%#2E2E4D
Black 90%#0F0F1A
Harmony palettes
Complementary
#666600#8B8B3DAnalogous
#9999F3#99A5F3Triadic
#99FF99#FF9999Split complementary
#82822E#545400Using 9999ff
9999ff 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-9999ff: #9999ff;
}
.button-primary {
background: var(--color-9999ff);
color: #000000;
}
$9999ff: #9999ff;
// Tailwind arbitrary value
class="bg-[#9999ff] text-white"