#1fe992 Color
Color Codes | |
---|---|
Hex Code | #1fe992 |
RGB Code | rgb(31, 233, 146) |
HSL Code | hsl(154, 82%, 52%) |
#1fe992 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(31, 233, 146); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(154, 82%, 52%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #1fe992
RGB Code | Hex Code | Preview |
---|---|---|
rgb(31, 233, 146, 10%) | #1fe9921a | |
rgb(31, 233, 146, 20%) | #1fe99233 | |
rgb(31, 233, 146, 40%) | #1fe9924C | |
rgb(31, 233, 146, 60%) | #1fe99299 | |
rgb(31, 233, 146, 80%) | #1fe992CC | |
rgb(31, 233, 146, 100%) | #1fe992FF |
Saturated and desaturated colors of #1fe992
HSL Code | Preview |
---|---|
hsl(154, 10%, 52%) | |
hsl(154, 20%, 52%) | |
hsl(154, 40%, 52%) | |
hsl(154, 60%, 52%) | |
hsl(154, 80%, 52%) | |
hsl(154, 100%, 52%) |
#1fe992 Color Usage In CSS
body { color: #1fe992; } p { color: rgb(31, 233, 146); } header { border-bottom:1px solid #1fe992; }