Mindaro
HEX: #E3F988 | Modern Palette
On White
1.16:1
FAIL
On Black
18.17:1
PASS
Color Specifications
HEX
#E3F988
RGB
227, 249, 136
HSL
71°, 45% ,97%
CMYK
8.84, 0, 45.38, 2.35
About Mindaro
Mindaro (#E3F988) is a color with RGB(227, 249, 136) and HSL(71.68°, 45.38%, 97.65%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #9E88F9, which creates strong contrast. Its triadic palette includes #88E3F9 and #F988E3.
- HEX: #E3F988
- RGB: 227, 249, 136
- HSL: 71.68°, 45.38%, 97.65%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #9E88F9
- Triadic colors: #88E3F9, #F988E3
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
Mindaro #E3F988 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Mindaro #E3F988 pairs with #9E88F9 as its complementary color, and #88E3F9 and #F988E3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#F3F389
Protanopia
#F7F788
Tritanopia
#EFEEEE
Achromatopsia
#EEEEEE
Frequently Asked Questions
Mindaro (#E3F988) is a color with RGB(227, 249, 136) and HSL(71.68°, 45.38%, 97.65%).
#E3F988 pairs strongly with #9E88F9 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#E3F988 is suitable for Text, Button, Background and works well with Warm styles.
Code Snippets
/* Background */
.element {
background-color: #E3F988;
}
/* Text */
.element {
color: #E3F988;
}
/* Border */
.element {
border: 1px solid #E3F988;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E3F988,
#F7F6FC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E3F988,
#F7F6FC
);
}
// SCSS variable
$mindaro: #E3F988;
// With RGB channels (useful for rgba() usage)
$mindaro-r: 227;
$mindaro-g: 249;
$mindaro-b: 136;
// Usage
.element {
background-color: $mindaro;
color: rgba($mindaro-r, $mindaro-g, $mindaro-b, 0.8);
}