CSS Named Color
Copy-ready color values
HEX
#ADD8E6RGB
rgb(173, 216, 230)HSL
hsl(195, 53%, 79%)HSV
hsv(195, 25%, 90%)CMYK approx.
cmyk(25, 6, 0, 10)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #ADD8E6 | |
| RGB | rgb(173, 216, 230) | |
| HSL | hsl(195, 53%, 79%) | |
| HSV | hsv(195, 25%, 90%) | |
| CMYK approx. | cmyk(25, 6, 0, 10) | |
| CSS keyword | lightblue |
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#7C5B50Analogous
#B2D8DF#ADDAE4Triadic
#D8E6AD#E6ADD8Split complementary
#714E42#432015Using 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"