Mint Cream

HEX: #F5FFFA | Modern Palette

On White
1.02:1
FAIL
On Black
20.57:1
PASS

Color Specifications

HEX
#F5FFFA
RGB
245, 255, 250
HSL
150°, 100% ,98%
CMYK
4, 0, 2, 0

About Mint Cream

Mint Cream (#F5FFFA) is a color with RGB(245, 255, 250) and HSL(150°, 100%, 98%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #FFF5FA, which creates strong contrast. Its triadic palette includes #FAF5FF and #FFFAF5. The name comes from Mint Cream (English).

  • HEX: #F5FFFA
  • RGB: 245, 255, 250
  • HSL: 150°, 100%, 98%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #FFF5FA
  • Triadic colors: #FAF5FF, #FFFAF5
  • The name comes from Mint Cream (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #F5FFFA from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #FCFCFA
Protanopia #FEFEFA
Tritanopia #F6FEFE
Achromatopsia #FDFDFD

Frequently Asked Questions

Mint Cream (#F5FFFA) is a color with RGB(245, 255, 250) and HSL(150°, 100%, 98%).

#F5FFFA pairs strongly with #FFF5FA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F5FFFA is suitable for Text, Button, Background and works well with Neon, Cool styles.

#F5FFFA is commonly associated with Playful.

The name Mint Cream is linked to Mint Cream from English, meaning A light, pale green color, reminiscent of mint-flavored cream or confectionery..

Name, History & Etymology

Origin Word Mint Cream
Meaning A light, pale green color, reminiscent of mint-flavored cream or confectionery.
Language English
First Recorded Use Late 19th - Early 20th Century (as a color name)

History

The concept of 'mint green' colors has existed for a long time, often associated with freshness, nature, and spring. The addition of 'cream' softens the green, making it paler and more muted. This specific shade, often represented by hex code #f5fffa, is a very light, almost off-white green. It gained popularity in interior design, fashion, and cosmetics, particularly during periods favoring pastel palettes. Its association with mint also links it to cleanliness and a refreshing quality. In digital contexts, it's a recognized web color.

First Recorded Use

The specific color name 'Mint Cream' likely emerged as part of a broader trend in the late 19th and early 20th centuries to name colors after natural objects, foods, or fashionable items. While 'mint' and 'cream' as individual words have much older origins, their combination as a specific color descriptor would be more recent. Early color guides and fashion publications from this period would be the most likely place for its first documented use.

Cultural Associations

Mint Cream is often associated with tranquility, freshness, and a delicate elegance. It can evoke feelings of spring, new beginnings, and a sense of calm. In fashion, it's considered a soft pastel, often used for spring and summer collections. In interior design, it's popular for creating serene and airy spaces, especially in bedrooms, bathrooms, and nurseries. It's also seen in vintage aesthetics, particularly from the mid-20th century, where pastels were prominent.

Similar Named Colors

Azure Mist/web #F0FFFF ΔE 2.78
Baby Powder #FEFEFA ΔE 4.56
Honeydew #F0FFF0 ΔE 4.78
Bubbles #E7FEFF ΔE 4.99

Code Snippets

/* Background */
.element {
    background-color: #F5FFFA;
}

/* Text */
.element {
    color: #F5FFFA;
}

/* Border */
.element {
    border: 1px solid #F5FFFA;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F5FFFA,
        #FFF5FA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F5FFFA,
        #FFF5FA
    );
}

// SCSS variable
$mint-cream: #F5FFFA;

// With RGB channels (useful for rgba() usage)
$mint-cream-r: 245;
$mint-cream-g: 255;
$mint-cream-b: 250;

// Usage
.element {
    background-color: $mint-cream;
    color: rgba($mint-cream-r, $mint-cream-g, $mint-cream-b, 0.8);
}