CSS Named Color

Copy-ready color values

HEX#F5F5DC
RGBrgb(245, 245, 220)
HSLhsl(60, 56%, 91%)
HSVhsv(60, 10%, 96%)
CMYK approx.cmyk(0, 0, 10, 4)

Color value table

FormatValueCopy
HEX#F5F5DC
RGBrgb(245, 245, 220)
HSLhsl(60, 56%, 91%)
HSVhsv(60, 10%, 96%)
CMYK approx.cmyk(0, 0, 10, 4)
CSS keywordbeige

Contrast and classification

LightLightness1.11:1Contrast with white18.98:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F6F6E0

White 30%
#F8F8E7

White 70%
#FCFCF5

White 90%
#FEFEFC

Black 10%
#DDDDC6

Black 30%
#ACAC9A

Black 70%
#4A4A42

Black 90%
#191916

Harmony palettes

Complementary

#0A0A23
#454558

Analogous

#F5F5DF
#F5F2DF

Triadic

#F5DCF5
#DCF5F5

Split complementary

#36364B
#08081D

Using Beige

Beige 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-beige: #f5f5dc;
}

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

$beige: #f5f5dc;

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