CSS Named Color

Copy-ready color values

HEX#E0FFFF
RGBrgb(224, 255, 255)
HSLhsl(180, 100%, 94%)
HSVhsv(180, 12%, 100%)
CMYK approx.cmyk(12, 0, 0, 0)

Color value table

FormatValueCopy
HEX#E0FFFF
RGBrgb(224, 255, 255)
HSLhsl(180, 100%, 94%)
HSVhsv(180, 12%, 100%)
CMYK approx.cmyk(12, 0, 0, 0)
CSS keywordlightcyan

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
#553D3D

Analogous

#E4FFFB
#E0FFFF

Triadic

#FFFFE0
#FFE0FF

Split complementary

#472E2E
#190000

Using 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"