#8729eb Color
Color Codes | |
---|---|
Hex Code | #8729eb |
RGB Code | rgb(135, 41, 235) |
HSL Code | hsl(269, 83%, 54%) |
#8729eb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(135, 41, 235); }
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(269, 83%, 54%); }
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 #8729eb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(135, 41, 235, 10%) | #8729eb1a | |
rgb(135, 41, 235, 20%) | #8729eb33 | |
rgb(135, 41, 235, 40%) | #8729eb4C | |
rgb(135, 41, 235, 60%) | #8729eb99 | |
rgb(135, 41, 235, 80%) | #8729ebCC | |
rgb(135, 41, 235, 100%) | #8729ebFF |
Saturated and desaturated colors of #8729eb
HSL Code | Preview |
---|---|
hsl(269, 10%, 54%) | |
hsl(269, 20%, 54%) | |
hsl(269, 40%, 54%) | |
hsl(269, 60%, 54%) | |
hsl(269, 80%, 54%) | |
hsl(269, 100%, 54%) |
#8729eb Color Usage In CSS
body { color: #8729eb; } p { color: rgb(135, 41, 235); } header { border-bottom:1px solid #8729eb; }