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