CSS Named Color
Copy-ready color values
HEX
#F5F5DCRGB
rgb(245, 245, 220)HSL
hsl(60, 56%, 91%)HSV
hsv(60, 10%, 96%)CMYK approx.
cmyk(0, 0, 10, 4)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F5F5DC | |
| RGB | rgb(245, 245, 220) | |
| HSL | hsl(60, 56%, 91%) | |
| HSV | hsv(60, 10%, 96%) | |
| CMYK approx. | cmyk(0, 0, 10, 4) | |
| CSS keyword | beige |
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#454558Analogous
#F5F5DF#F5F2DFTriadic
#F5DCF5#DCF5F5Split complementary
#36364B#08081DUsing 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"