Mint Green
HEX: #98FF98 | Modern Palette
Color Specifications
#98FF98
152, 255, 152
120°, 40% ,100%
40.39, 0, 40.39, 0
About Mint Green
Mint Green (#98FF98) is a color with RGB(152, 255, 152) and HSL(120°, 40.39%, 100%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #FF98FF, which creates strong contrast. Its triadic palette includes #9898FF and #FF9898. The name comes from Mint Green (English).
- HEX: #98FF98
- RGB: 152, 255, 152
- HSL: 120°, 40.39%, 100%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #FF98FF
- Triadic colors: #9898FF, #FF9898
- The name comes from Mint Green (English).
Live Components
Color Palettes
Mint Green #98FF98 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Mint Green #98FF98 pairs with #FF98FF as its complementary color, and #9898FF and #FF9898 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Shades & Tints
The shade and tint range for Mint Green #98FF98 moves from dark #001A00 tones through the base color to lighter #E6FFE6 tones, making it useful for depth, hierarchy, and background variation.
Color Characteristics
Accessibility Simulation
#E7E79B
#F6F697
#ABF5F5
#E8E8E8
Frequently Asked Questions
Name, History & Etymology
History
The color green has long been associated with nature, growth, and freshness. As color naming became more nuanced with industrial advancements in dyes and pigments, specific shades began to acquire more descriptive names. 'Mint green' emerged to describe a light, often pastel, shade of green with a cool undertone, directly referencing the common culinary herb, mint. Its popularity surged in the Art Deco era, where it was used in interiors, fashion, and automobiles, often paired with creams, blacks, and metallics. It saw resurgences in the mid-20th century and again in the early 21st century, often associated with vintage aesthetics, spring, and a sense of calm.
First Recorded Use
The exact first recorded use of 'mint green' as a color name is difficult to pinpoint to a single date, but its popularization as a distinct color term, especially in fashion and interior design, began in the early 20th century, particularly gaining traction in the 1920s and 1930s.
Cultural Associations
Often associated with freshness, cleanliness, and nature. Popular in spring fashion and decor. Frequently used in vintage-inspired designs, particularly from the 1920s to 1950s. Can evoke feelings of tranquility and peace. Commonly used in nurseries and children's rooms due to its soft and calming nature.
Code Snippets
/* Background */
.element {
background-color: #98FF98;
}
/* Text */
.element {
color: #98FF98;
}
/* Border */
.element {
border: 1px solid #98FF98;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#98FF98,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#98FF98,
#FFFFFF
);
}
// SCSS variable
$mint-green: #98FF98;
// With RGB channels (useful for rgba() usage)
$mint-green-r: 152;
$mint-green-g: 255;
$mint-green-b: 152;
// Usage
.element {
background-color: $mint-green;
color: rgba($mint-green-r, $mint-green-g, $mint-green-b, 0.8);
}