CSS Named Color
Copy-ready color values
HEX
#F0F8FFRGB
rgb(240, 248, 255)HSL
hsl(208, 100%, 97%)HSV
hsv(208, 6%, 100%)CMYK approx.
cmyk(6, 3, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F0F8FF | |
| RGB | rgb(240, 248, 255) | |
| HSL | hsl(208, 100%, 97%) | |
| HSV | hsv(208, 6%, 100%) | |
| CMYK approx. | cmyk(6, 3, 0, 0) | |
| CSS keyword | aliceblue |
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#49433DAnalogous
#F1F8FD#F0F9FETriadic
#F8FFF0#FFF0F8Split complementary
#3A342E#0C0600Using 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"