#b36983 Color
Color Codes | |
---|---|
Hex Code | #b36983 |
RGB Code | rgb(179, 105, 131) |
HSL Code | hsl(339, 33%, 56%) |
#b36983 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 105, 131); }
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(339, 33%, 56%); }
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 #b36983
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 105, 131, 10%) | #b369831a | |
rgb(179, 105, 131, 20%) | #b3698333 | |
rgb(179, 105, 131, 40%) | #b369834C | |
rgb(179, 105, 131, 60%) | #b3698399 | |
rgb(179, 105, 131, 80%) | #b36983CC | |
rgb(179, 105, 131, 100%) | #b36983FF |
Saturated and desaturated colors of #b36983
HSL Code | Preview |
---|---|
hsl(339, 10%, 56%) | |
hsl(339, 20%, 56%) | |
hsl(339, 40%, 56%) | |
hsl(339, 60%, 56%) | |
hsl(339, 80%, 56%) | |
hsl(339, 100%, 56%) |
#b36983 Color Usage In CSS
body { color: #b36983; } p { color: rgb(179, 105, 131); } header { border-bottom:1px solid #b36983; }