CSS Named Color

Copy-ready color values

HEX#E6E6FA
RGBrgb(230, 230, 250)
HSLhsl(240, 67%, 94%)
HSVhsv(240, 8%, 98%)
CMYK approx.cmyk(8, 8, 0, 2)

Color value table

FormatValueCopy
HEX#E6E6FA
RGBrgb(230, 230, 250)
HSLhsl(240, 67%, 94%)
HSVhsv(240, 8%, 98%)
CMYK approx.cmyk(8, 8, 0, 2)
CSS keywordlavender

Contrast and classification

LightLightness1.23:1Contrast with white17.06:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#E9E9FB

White 30%
#EEEEFC

White 70%
#F8F8FE

White 90%
#FDFDFF

Black 10%
#CFCFE1

Black 30%
#A1A1AF

Black 70%
#45454B

Black 90%
#171719

Harmony palettes

Complementary

#191905
#505041

Analogous

#E6E6F8
#E6E8F8

Triadic

#E6FAE6
#FAE6E6

Split complementary

#424232
#151504

Using Lavender

Lavender 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-lavender: #e6e6fa;
}

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

$lavender: #e6e6fa;

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