CSS Named Color
Copy-ready color values
HEX
#E0FFFFRGB
rgb(224, 255, 255)HSL
hsl(180, 100%, 94%)HSV
hsv(180, 12%, 100%)CMYK approx.
cmyk(12, 0, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E0FFFF | |
| RGB | rgb(224, 255, 255) | |
| HSL | hsl(180, 100%, 94%) | |
| HSV | hsv(180, 12%, 100%) | |
| CMYK approx. | cmyk(12, 0, 0, 0) | |
| CSS keyword | lightcyan |
Contrast and classification
LightLightness1.05:1Contrast with white19.92:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#E3FFFF
White 30%#E9FFFF
White 70%#F6FFFF
White 90%#FCFFFF
Black 10%#CAE6E6
Black 30%#9DB3B3
Black 70%#434D4D
Black 90%#161A1A
Harmony palettes
Complementary
#1F0000#553D3DAnalogous
#E4FFFB#E0FFFFTriadic
#FFFFE0#FFE0FFSplit complementary
#472E2E#190000Using Lightcyan
Lightcyan 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-lightcyan: #e0ffff;
}
.button-primary {
background: var(--color-lightcyan);
color: #000000;
}
$lightcyan: #e0ffff;
// Tailwind arbitrary value
class="bg-[#e0ffff] text-white"