Web Safe Color
Copy-ready color values
HEX
#99FFFFRGB
rgb(153, 255, 255)HSL
hsl(180, 100%, 80%)HSV
hsv(180, 40%, 100%)CMYK approx.
cmyk(40, 0, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #99FFFF | |
| RGB | rgb(153, 255, 255) | |
| HSL | hsl(180, 100%, 80%) | |
| HSV | hsv(180, 40%, 100%) | |
| CMYK approx. | cmyk(40, 0, 0, 0) | |
| CSS keyword | 99ffff |
Contrast and classification
LightLightness1.16:1Contrast with white18.10:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#A3FFFF
White 30%#B8FFFF
White 70%#E0FFFF
White 90%#F5FFFF
Black 10%#8AE6E6
Black 30%#6BB3B3
Black 70%#2E4D4D
Black 90%#0F1A1A
Harmony palettes
Complementary
#660000#8B3D3DAnalogous
#A5FFF3#99FFFFTriadic
#FFFF99#FF99FFSplit complementary
#822E2E#540000Using 99ffff
99ffff 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-99ffff: #99ffff;
}
.button-primary {
background: var(--color-99ffff);
color: #000000;
}
$99ffff: #99ffff;
// Tailwind arbitrary value
class="bg-[#99ffff] text-white"