Chartreuse color: code #7FFF00
Chartreuse
#7FFF00
Color codes
- HEX
#7FFF00 - RGB
rgb(127, 255, 0) - HSL
hsl(90, 100%, 50%) - HSV
hsv(90, 100%, 100%) - CMYK
cmyk(50%, 0%, 100%, 0%) - LAB
lab(89.9% -68.1 85.8) - OKLCH
oklch(89% 0.265 136)
About the color Chartreuse
Chartreuse has the HEX code #7FFF00, which corresponds to rgb(127, 255, 0) in the RGB model. On the color wheel its hue sits at 90°, with 100% saturation and 50% lightness (hsl(90, 100%, 50%)).
Because of its hue it reads as a cool color: it tends to feel calm and distant, and it visually “recedes” in a composition.
As a background it calls for dark text: black reaches a 16.20:1 contrast ratio on it, versus 1.29:1 for white.
For print, the approximate conversion is cmyk(50%, 0%, 100%, 0%). Always confirm with your printer’s color profile, because the result depends on paper and ink.
Lighter tints
Darker shades
Color combinations with Chartreuse
Complementary
#7FFF00 · #8000FF
Analogous
#FFFF00 · #7FFF00 · #00FF00
Triadic
#7FFF00 · #0080FF · #FF0080
Tetradic
#7FFF00 · #00FFFF · #8000FF · #FF0000
Split-complementary
#7FFF00 · #0000FF · #FF00FF
Monochromatic
#408000 · #66CC00 · #7FFF00 · #A6FF4D · #CCFF99
Chartreuse with white and black text
How to use it in CSS
:root {
--color-chartreuse: #7FFF00;
--color-chartreuse-rgb: 127, 255, 0;
}
.elemento {
background-color: var(--color-chartreuse);
color: #000000;
}