CSS Named Color

Copy-ready color values

HEX#F0FFFF
RGBrgb(240, 255, 255)
HSLhsl(180, 100%, 97%)
HSVhsv(180, 6%, 100%)
CMYK approx.cmyk(6, 0, 0, 0)

Color value table

FormatValueCopy
HEX#F0FFFF
RGBrgb(240, 255, 255)
HSLhsl(180, 100%, 97%)
HSVhsv(180, 6%, 100%)
CMYK approx.cmyk(6, 0, 0, 0)
CSS keywordazure

Contrast and classification

LightLightness1.03:1Contrast with white20.45:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#F2FFFF

White 30%
#F5FFFF

White 70%
#FBFFFF

White 90%
#FEFFFF

Black 10%
#D8E6E6

Black 30%
#A8B3B3

Black 70%
#484D4D

Black 90%
#181A1A

Harmony palettes

Complementary

#0F0000
#493D3D

Analogous

#F2FFFD
#F0FFFF

Triadic

#FFFFF0
#FFF0FF

Split complementary

#3A2E2E
#0C0000

Using Azure

Azure 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-azure: #f0ffff;
}

.button-primary {
  background: var(--color-azure);
  color: #000000;
}

$azure: #f0ffff;

// Tailwind arbitrary value
class="bg-[#f0ffff] text-white"