#b70549 Color
Color Codes | |
---|---|
Hex Code | #b70549 |
RGB Code | rgb(183, 05, 73) |
HSL Code | hsl(337, 95%, 37%) |
#b70549 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(183, 05, 73); }
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(337, 95%, 37%); }
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 #b70549
RGB Code | Hex Code | Preview |
---|---|---|
rgb(183, 05, 73, 10%) | #b705491a | |
rgb(183, 05, 73, 20%) | #b7054933 | |
rgb(183, 05, 73, 40%) | #b705494C | |
rgb(183, 05, 73, 60%) | #b7054999 | |
rgb(183, 05, 73, 80%) | #b70549CC | |
rgb(183, 05, 73, 100%) | #b70549FF |
Saturated and desaturated colors of #b70549
HSL Code | Preview |
---|---|
hsl(337, 10%, 37%) | |
hsl(337, 20%, 37%) | |
hsl(337, 40%, 37%) | |
hsl(337, 60%, 37%) | |
hsl(337, 80%, 37%) | |
hsl(337, 100%, 37%) |
#b70549 Color Usage In CSS
body { color: #b70549; } p { color: rgb(183, 05, 73); } header { border-bottom:1px solid #b70549; }