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