Mint Cream
HEX: #F5FFFA | Modern Palette
Color Specifications
#F5FFFA
245, 255, 250
150°, 100% ,98%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}