French Lime

HEX: #9EFD38 | Modern Palette

On White
1.27:1
FAIL
On Black
16.56:1
PASS

Color Specifications

HEX
#9EFD38
RGB
158, 253, 56
HSL
88°, 77% ,99%
CMYK
37.55, 0, 77.87, 0.78

About French Lime

French Lime (#9EFD38) is a color with RGB(158, 253, 56) and HSL(88.93°, 77.87%, 99.22%). It is commonly associated with Playful moods. In design, it is suitable for Text, Button, Background. Its complementary color is #9738FD, which creates strong contrast. Its triadic palette includes #389EFD and #FD389E.

  • HEX: #9EFD38
  • RGB: 158, 253, 56
  • HSL: 88.93°, 77.87%, 99.22%
  • Mood: Playful
  • Use case: Text, Button, Background
  • Complementary color: #9738FD
  • Triadic colors: #389EFD, #FD389E

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

Color Characteristics

Mood
Playful
Style

Accessibility Simulation

Deuteranopia #E7E741
Protanopia #F5F536
Tritanopia #B6EFEF
Achromatopsia #E4E4E4

Frequently Asked Questions

French Lime (#9EFD38) is a color with RGB(158, 253, 56) and HSL(88.93°, 77.87%, 99.22%).

#9EFD38 pairs strongly with #9738FD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9EFD38 is suitable for Text, Button, Background.

#9EFD38 is commonly associated with Playful.

Similar Named Colors

Green Yellow #ADFF2F ΔE 2.13
Spring Bud #A7FC00 ΔE 2.73
Chartreuse #7FFF00 ΔE 2.88
Lawn Green #7CFC00 ΔE 3.02

Code Snippets

/* Background */
.element {
    background-color: #9EFD38;
}

/* Text */
.element {
    color: #9EFD38;
}

/* Border */
.element {
    border: 1px solid #9EFD38;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9EFD38,
        #FDFBFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9EFD38,
        #FDFBFF
    );
}

// SCSS variable
$french-lime: #9EFD38;

// With RGB channels (useful for rgba() usage)
$french-lime-r: 158;
$french-lime-g: 253;
$french-lime-b: 56;

// Usage
.element {
    background-color: $french-lime;
    color: rgba($french-lime-r, $french-lime-g, $french-lime-b, 0.8);
}