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

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 #E3F988 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm

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.

Similar Named Colors

Pastel Yellow #FDFD96 ΔE 5.22
Canary #FFFF99 ΔE 5.38
Medium Spring Bud #C9DC87 ΔE 7.19
Inchworm #B2EC5D ΔE 7.66

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);
}