CSS Named Color

Copy-ready color values

HEX#ADD8E6
RGBrgb(173, 216, 230)
HSLhsl(195, 53%, 79%)
HSVhsv(195, 25%, 90%)
CMYK approx.cmyk(25, 6, 0, 10)

Color value table

FormatValueCopy
HEX#ADD8E6
RGBrgb(173, 216, 230)
HSLhsl(195, 53%, 79%)
HSVhsv(195, 25%, 90%)
CMYK approx.cmyk(25, 6, 0, 10)
CSS keywordlightblue

Contrast and classification

LightLightness1.53:1Contrast with white13.74:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#B5DCE9

White 30%
#C6E4EE

White 70%
#E6F3F8

White 90%
#F7FBFD

Black 10%
#9CC2CF

Black 30%
#7997A1

Black 70%
#344145

Black 90%
#111617

Harmony palettes

Complementary

#522719
#7C5B50

Analogous

#B2D8DF
#ADDAE4

Triadic

#D8E6AD
#E6ADD8

Split complementary

#714E42
#432015

Using Lightblue

Lightblue 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-lightblue: #add8e6;
}

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

$lightblue: #add8e6;

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