CSS Named Color
Copy-ready color values
HEX
#F5DEB3RGB
rgb(245, 222, 179)HSL
hsl(39, 77%, 83%)HSV
hsv(39, 27%, 96%)CMYK approx.
cmyk(0, 9, 27, 4)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F5DEB3 | |
| RGB | rgb(245, 222, 179) | |
| HSL | hsl(39, 77%, 83%) | |
| HSV | hsv(39, 27%, 96%) | |
| CMYK approx. | cmyk(0, 9, 27, 4) | |
| CSS keyword | wheat |
Contrast and classification
LightLightness1.31:1Contrast with white15.98:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F6E1BB
White 30%#F8E8CA
White 70%#FCF5E8
White 90%#FEFCF7
Black 10%#DDC8A1
Black 30%#AC9B7D
Black 70%#4A4336
Black 90%#191612
Harmony palettes
Complementary
#0A214C#455677Analogous
#F2DEBB#F5D9B8Triadic
#DEB3F5#B3F5DESplit complementary
#36496C#081B3EUsing Wheat
Wheat 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-wheat: #f5deb3;
}
.button-primary {
background: var(--color-wheat);
color: #000000;
}
$wheat: #f5deb3;
// Tailwind arbitrary value
class="bg-[#f5deb3] text-white"