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