#7c1ec8 Color
Color Codes | |
---|---|
Hex Code | #7c1ec8 |
RGB Code | rgb(124, 30, 200) |
HSL Code | hsl(273, 74%, 45%) |
#7c1ec8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(124, 30, 200); }
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(273, 74%, 45%); }
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 #7c1ec8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(124, 30, 200, 10%) | #7c1ec81a | |
rgb(124, 30, 200, 20%) | #7c1ec833 | |
rgb(124, 30, 200, 40%) | #7c1ec84C | |
rgb(124, 30, 200, 60%) | #7c1ec899 | |
rgb(124, 30, 200, 80%) | #7c1ec8CC | |
rgb(124, 30, 200, 100%) | #7c1ec8FF |
Saturated and desaturated colors of #7c1ec8
HSL Code | Preview |
---|---|
hsl(273, 10%, 45%) | |
hsl(273, 20%, 45%) | |
hsl(273, 40%, 45%) | |
hsl(273, 60%, 45%) | |
hsl(273, 80%, 45%) | |
hsl(273, 100%, 45%) |
#7c1ec8 Color Usage In CSS
body { color: #7c1ec8; } p { color: rgb(124, 30, 200); } header { border-bottom:1px solid #7c1ec8; }