French Lime
HEX: #9EFD38 | Modern Palette
Color Specifications
#9EFD38
158, 253, 56
88°, 77% ,99%
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
Color Palettes
French Lime #9EFD38 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
French Lime #9EFD38 pairs with #9738FD as its complementary color, and #389EFD and #FD389E in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E7E741
#F5F536
#B6EFEF
#E4E4E4
Frequently Asked Questions
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);
}