CSS Named Color
Copy-ready color values
HEX
#F5FFFARGB
rgb(245, 255, 250)HSL
hsl(150, 100%, 98%)HSV
hsv(150, 4%, 100%)CMYK approx.
cmyk(4, 0, 2, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F5FFFA | |
| RGB | rgb(245, 255, 250) | |
| HSL | hsl(150, 100%, 98%) | |
| HSV | hsv(150, 4%, 100%) | |
| CMYK approx. | cmyk(4, 0, 2, 0) | |
| CSS keyword | mintcream |
Contrast and classification
LightLightness1.02:1Contrast with white20.57:1Contrast with blackGrayscaleColor family
Shade and tint preview
White 10%#F6FFFB
White 30%#F8FFFC
White 70%#FCFFFE
White 90%#FEFFFF
Black 10%#DDE6E1
Black 30%#ACB3AF
Black 70%#4A4D4B
Black 90%#191A19
Harmony palettes
Complementary
#0A0005#453D41Analogous
#F6FFF9#F5FEFBTriadic
#FFFAF5#FAF5FFSplit complementary
#362E32#080004Using Mintcream
Mintcream 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-mintcream: #f5fffa;
}
.button-primary {
background: var(--color-mintcream);
color: #000000;
}
$mintcream: #f5fffa;
// Tailwind arbitrary value
class="bg-[#f5fffa] text-white"