#6fff85 Color
Color Codes | |
---|---|
Hex Code | #6fff85 |
RGB Code | rgb(111, 255, 133) |
HSL Code | hsl(129, 100%, 72%) |
#6fff85 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 255, 133); }
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(129, 100%, 72%); }
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 #6fff85
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 255, 133, 10%) | #6fff851a | |
rgb(111, 255, 133, 20%) | #6fff8533 | |
rgb(111, 255, 133, 40%) | #6fff854C | |
rgb(111, 255, 133, 60%) | #6fff8599 | |
rgb(111, 255, 133, 80%) | #6fff85CC | |
rgb(111, 255, 133, 100%) | #6fff85FF |
Saturated and desaturated colors of #6fff85
HSL Code | Preview |
---|---|
hsl(129, 10%, 72%) | |
hsl(129, 20%, 72%) | |
hsl(129, 40%, 72%) | |
hsl(129, 60%, 72%) | |
hsl(129, 80%, 72%) | |
hsl(129, 100%, 72%) |
#6fff85 Color Usage In CSS
body { color: #6fff85; } p { color: rgb(111, 255, 133); } header { border-bottom:1px solid #6fff85; }