#48827b Color
Color Codes | |
---|---|
Hex Code | #48827b |
RGB Code | rgb(72, 130, 123) |
HSL Code | hsl(173, 29%, 40%) |
#48827b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 130, 123); }
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(173, 29%, 40%); }
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 #48827b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 130, 123, 10%) | #48827b1a | |
rgb(72, 130, 123, 20%) | #48827b33 | |
rgb(72, 130, 123, 40%) | #48827b4C | |
rgb(72, 130, 123, 60%) | #48827b99 | |
rgb(72, 130, 123, 80%) | #48827bCC | |
rgb(72, 130, 123, 100%) | #48827bFF |
Saturated and desaturated colors of #48827b
HSL Code | Preview |
---|---|
hsl(173, 10%, 40%) | |
hsl(173, 20%, 40%) | |
hsl(173, 40%, 40%) | |
hsl(173, 60%, 40%) | |
hsl(173, 80%, 40%) | |
hsl(173, 100%, 40%) |
#48827b Color Usage In CSS
body { color: #48827b; } p { color: rgb(72, 130, 123); } header { border-bottom:1px solid #48827b; }