#5af675 Color
Color Codes | |
---|---|
Hex Code | #5af675 |
RGB Code | rgb(90, 246, 117) |
HSL Code | hsl(130, 90%, 66%) |
#5af675 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 246, 117); }
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(130, 90%, 66%); }
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 #5af675
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 246, 117, 10%) | #5af6751a | |
rgb(90, 246, 117, 20%) | #5af67533 | |
rgb(90, 246, 117, 40%) | #5af6754C | |
rgb(90, 246, 117, 60%) | #5af67599 | |
rgb(90, 246, 117, 80%) | #5af675CC | |
rgb(90, 246, 117, 100%) | #5af675FF |
Saturated and desaturated colors of #5af675
HSL Code | Preview |
---|---|
hsl(130, 10%, 66%) | |
hsl(130, 20%, 66%) | |
hsl(130, 40%, 66%) | |
hsl(130, 60%, 66%) | |
hsl(130, 80%, 66%) | |
hsl(130, 100%, 66%) |
#5af675 Color Usage In CSS
body { color: #5af675; } p { color: rgb(90, 246, 117); } header { border-bottom:1px solid #5af675; }