CSS Named Color
Copy-ready color values
HEX
#F0FFFFRGB
rgb(240, 255, 255)HSL
hsl(180, 100%, 97%)HSV
hsv(180, 6%, 100%)CMYK approx.
cmyk(6, 0, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F0FFFF | |
| RGB | rgb(240, 255, 255) | |
| HSL | hsl(180, 100%, 97%) | |
| HSV | hsv(180, 6%, 100%) | |
| CMYK approx. | cmyk(6, 0, 0, 0) | |
| CSS keyword | azure |
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#493D3DAnalogous
#F2FFFD#F0FFFFTriadic
#FFFFF0#FFF0FFSplit complementary
#3A2E2E#0C0000Using 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"