#27ff82 Color
Color Codes | |
---|---|
Hex Code | #27ff82 |
RGB Code | rgb(39, 255, 130) |
HSL Code | hsl(145, 100%, 58%) |
#27ff82 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(39, 255, 130); }
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(145, 100%, 58%); }
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 #27ff82
RGB Code | Hex Code | Preview |
---|---|---|
rgb(39, 255, 130, 10%) | #27ff821a | |
rgb(39, 255, 130, 20%) | #27ff8233 | |
rgb(39, 255, 130, 40%) | #27ff824C | |
rgb(39, 255, 130, 60%) | #27ff8299 | |
rgb(39, 255, 130, 80%) | #27ff82CC | |
rgb(39, 255, 130, 100%) | #27ff82FF |
Saturated and desaturated colors of #27ff82
HSL Code | Preview |
---|---|
hsl(145, 10%, 58%) | |
hsl(145, 20%, 58%) | |
hsl(145, 40%, 58%) | |
hsl(145, 60%, 58%) | |
hsl(145, 80%, 58%) | |
hsl(145, 100%, 58%) |
#27ff82 Color Usage In CSS
body { color: #27ff82; } p { color: rgb(39, 255, 130); } header { border-bottom:1px solid #27ff82; }