Mindaro
HEX: #E3F988 | Modern Palette
Color Specifications
#E3F988
227, 249, 136
71°, 45% ,97%
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
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 #E3F988 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#F3F389
#F7F788
#EFEEEE
#EEEEEE
Frequently Asked Questions
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);
}