#44a477 Color
Color Codes | |
---|---|
Hex Code | #44a477 |
RGB Code | rgb(68, 164, 119) |
HSL Code | hsl(152, 41%, 45%) |
#44a477 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 164, 119); }
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(152, 41%, 45%); }
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 #44a477
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 164, 119, 10%) | #44a4771a | |
rgb(68, 164, 119, 20%) | #44a47733 | |
rgb(68, 164, 119, 40%) | #44a4774C | |
rgb(68, 164, 119, 60%) | #44a47799 | |
rgb(68, 164, 119, 80%) | #44a477CC | |
rgb(68, 164, 119, 100%) | #44a477FF |
Saturated and desaturated colors of #44a477
HSL Code | Preview |
---|---|
hsl(152, 10%, 45%) | |
hsl(152, 20%, 45%) | |
hsl(152, 40%, 45%) | |
hsl(152, 60%, 45%) | |
hsl(152, 80%, 45%) | |
hsl(152, 100%, 45%) |
#44a477 Color Usage In CSS
body { color: #44a477; } p { color: rgb(68, 164, 119); } header { border-bottom:1px solid #44a477; }