#44b0a2 Color
Color Codes | |
---|---|
Hex Code | #44b0a2 |
RGB Code | rgb(68, 176, 162) |
HSL Code | hsl(172, 44%, 48%) |
#44b0a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 176, 162); }
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(172, 44%, 48%); }
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 #44b0a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 176, 162, 10%) | #44b0a21a | |
rgb(68, 176, 162, 20%) | #44b0a233 | |
rgb(68, 176, 162, 40%) | #44b0a24C | |
rgb(68, 176, 162, 60%) | #44b0a299 | |
rgb(68, 176, 162, 80%) | #44b0a2CC | |
rgb(68, 176, 162, 100%) | #44b0a2FF |
Saturated and desaturated colors of #44b0a2
HSL Code | Preview |
---|---|
hsl(172, 10%, 48%) | |
hsl(172, 20%, 48%) | |
hsl(172, 40%, 48%) | |
hsl(172, 60%, 48%) | |
hsl(172, 80%, 48%) | |
hsl(172, 100%, 48%) |
#44b0a2 Color Usage In CSS
body { color: #44b0a2; } p { color: rgb(68, 176, 162); } header { border-bottom:1px solid #44b0a2; }