#70017c Color
Color Codes | |
---|---|
Hex Code | #70017c |
RGB Code | rgb(112, 01, 124) |
HSL Code | hsl(294, 98%, 25%) |
#70017c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 01, 124); }
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(294, 98%, 25%); }
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 #70017c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 01, 124, 10%) | #70017c1a | |
rgb(112, 01, 124, 20%) | #70017c33 | |
rgb(112, 01, 124, 40%) | #70017c4C | |
rgb(112, 01, 124, 60%) | #70017c99 | |
rgb(112, 01, 124, 80%) | #70017cCC | |
rgb(112, 01, 124, 100%) | #70017cFF |
Saturated and desaturated colors of #70017c
HSL Code | Preview |
---|---|
hsl(294, 10%, 25%) | |
hsl(294, 20%, 25%) | |
hsl(294, 40%, 25%) | |
hsl(294, 60%, 25%) | |
hsl(294, 80%, 25%) | |
hsl(294, 100%, 25%) |
#70017c Color Usage In CSS
body { color: #70017c; } p { color: rgb(112, 01, 124); } header { border-bottom:1px solid #70017c; }