#72c180 Color
Color Codes | |
---|---|
Hex Code | #72c180 |
RGB Code | rgb(114, 193, 128) |
HSL Code | hsl(131, 39%, 60%) |
#72c180 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 193, 128); }
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(131, 39%, 60%); }
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 #72c180
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 193, 128, 10%) | #72c1801a | |
rgb(114, 193, 128, 20%) | #72c18033 | |
rgb(114, 193, 128, 40%) | #72c1804C | |
rgb(114, 193, 128, 60%) | #72c18099 | |
rgb(114, 193, 128, 80%) | #72c180CC | |
rgb(114, 193, 128, 100%) | #72c180FF |
Saturated and desaturated colors of #72c180
HSL Code | Preview |
---|---|
hsl(131, 10%, 60%) | |
hsl(131, 20%, 60%) | |
hsl(131, 40%, 60%) | |
hsl(131, 60%, 60%) | |
hsl(131, 80%, 60%) | |
hsl(131, 100%, 60%) |
#72c180 Color Usage In CSS
body { color: #72c180; } p { color: rgb(114, 193, 128); } header { border-bottom:1px solid #72c180; }