CSS Named Color

Copy-ready color values

HEX#F0F8FF
RGBrgb(240, 248, 255)
HSLhsl(208, 100%, 97%)
HSVhsv(208, 6%, 100%)
CMYK approx.cmyk(6, 3, 0, 0)

Color value table

FormatValueCopy
HEX#F0F8FF
RGBrgb(240, 248, 255)
HSLhsl(208, 100%, 97%)
HSVhsv(208, 6%, 100%)
CMYK approx.cmyk(6, 3, 0, 0)
CSS keywordaliceblue

Contrast and classification

LightLightness1.07:1Contrast with white19.58:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#F2F9FF

White 30%
#F5FAFF

White 70%
#FBFDFF

White 90%
#FEFEFF

Black 10%
#D8DFE6

Black 30%
#A8AEB3

Black 70%
#484A4D

Black 90%
#18191A

Harmony palettes

Complementary

#0F0700
#49433D

Analogous

#F1F8FD
#F0F9FE

Triadic

#F8FFF0
#FFF0F8

Split complementary

#3A342E
#0C0600

Using Aliceblue

Aliceblue 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-aliceblue: #f0f8ff;
}

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

$aliceblue: #f0f8ff;

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