#48adae Color
Color Codes | |
---|---|
Hex Code | #48adae |
RGB Code | rgb(72, 173, 174) |
HSL Code | hsl(181, 41%, 48%) |
#48adae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 173, 174); }
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(181, 41%, 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 #48adae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 173, 174, 10%) | #48adae1a | |
rgb(72, 173, 174, 20%) | #48adae33 | |
rgb(72, 173, 174, 40%) | #48adae4C | |
rgb(72, 173, 174, 60%) | #48adae99 | |
rgb(72, 173, 174, 80%) | #48adaeCC | |
rgb(72, 173, 174, 100%) | #48adaeFF |
Saturated and desaturated colors of #48adae
HSL Code | Preview |
---|---|
hsl(181, 10%, 48%) | |
hsl(181, 20%, 48%) | |
hsl(181, 40%, 48%) | |
hsl(181, 60%, 48%) | |
hsl(181, 80%, 48%) | |
hsl(181, 100%, 48%) |
#48adae Color Usage In CSS
body { color: #48adae; } p { color: rgb(72, 173, 174); } header { border-bottom:1px solid #48adae; }