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