ChromaWell

MintCream

#F5FFFA

Named after the pale, cool green-white of mint-flavored cream or ice cream — one of several CSS names (with HoneyDew and PeachPuff) that borrow directly from dessert and confectionery color rather than the raw plant or fruit.

Every value on this page is computed at build time from the hex code above using ChromaWell's shared, unit-tested color-core library — the same conversion, contrast, and nearest-name math used across every color page on this site, so a value here matches the same color looked up anywhere else on ChromaWell.

The conversions block gives you the same color in seven common formats (hex, RGB, HSL, HSV, CMYK, Lab, and OKLCH) so you can copy whichever your codebase or design tool expects. The contrast block applies the WCAG 2.x relative-luminance formula against several common backgrounds and reports whether text in this color would pass AA or AAA at normal and large text sizes. Shades/tints step the lightness up and down at a fixed hue and saturation; harmonies rotate the hue around the color wheel to surface complementary, analogous, triadic, and split-complementary partners; and nearest named colors ranks the closest matches from our full 1,094-color dataset by CIE76 Delta-E distance in Lab space, a perceptual distance metric rather than a raw RGB difference.

Conversions

HEX
#F5FFFA
RGB
rgb(245, 255, 250)
HSL
hsl(150, 100%, 98%)
HSV
hsv(150, 3.9%, 100%)
CMYK
cmyk(3.9, 0, 2, 0)
Lab
lab(99.16, -4.16, 1.25)
OKLCH
oklch(0.9912 0.0124 164.8)

WCAG contrast

  • On white: 1.02:1 — normal text FAIL, large text FAIL
  • On black: 20.57:1 — normal text AAA, large text AAA
  • On pure white: 1.02:1 — normal text FAIL, large text FAIL
  • On pure black: 20.57:1 — normal text AAA, large text AAA
  • On light gray (#F3F4F6): 1.08:1 — normal text FAIL, large text FAIL
  • On dark slate (#1F2937): 14.38:1 — normal text AAA, large text AAA

Ratios computed from WCAG 2.x relative luminance; AA needs 4.5:1 for normal text and 3:1 for large text (18pt+ or 14pt+ bold), AAA needs 7:1 and 4.5:1 respectively.

Shades & tints

#5CFFAD
#A8FFD4
#F5FFFA
#FFFFFF
#FFFFFF

Lightness stepped ±15% and ±30% in HSL space at constant hue and saturation (150°, 100%) — a shade darkens toward black, a tint lightens toward white.

Color harmonies

Hue-wheel relationships computed at this color's exact hue (150°), holding saturation and lightness constant.

Complementary

#FFF5FA

rgb(255, 245, 250)

Analogous −30°

#F5FFF5

rgb(245, 255, 245)

Analogous +30°

#F5FFFF

rgb(245, 255, 255)

Triadic 120°

#FAF5FF

rgb(250, 245, 255)

Triadic 240°

#FFFAF5

rgb(255, 250, 245)

Split-complementary −150°

#FFF5F5

rgb(255, 245, 245)

Split-complementary +150°

#FFF5FF

rgb(255, 245, 255)

Nearest named colors

  • MintCream (ΔE 0.0)
  • Azure (ΔE 3.0)
  • White (ΔE 4.4)
  • WhiteSmoke (ΔE 5.1)
  • HoneyDew (ΔE 5.5)

Ranked by CIE76 Delta-E distance in Lab space — the lower the number, the closer the perceptual match to this exact color.

Perceptual profile

Hue 150° places this color in the cool range of the wheel. At 100% saturation it reads as highly saturated/vivid, and at 98% lightness it sits very light, near white. In OKLCH — the newer, perceptually uniform color space — this color's lightness is 0.9912, chroma 0.0124, hue 164.8°, which is a more accurate predictor of how "bright" this color will look next to others than HSL lightness alone.

Use in CSS

This is a cool hue at 100% saturation and 98% lightness. Drop it into a stylesheet as a custom property:

:root {
  --color-f5fffa: #F5FFFA;
}
.el {
  color: var(--color-f5fffa);
}

Part of the open CSS/X11 named-color set — see methodology.