#8a7ce6 Color
Color Codes | |
---|---|
Hex Code | #8a7ce6 |
RGB Code | rgb(138, 124, 230) |
HSL Code | hsl(248, 68%, 69%) |
#8a7ce6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(138, 124, 230); }
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(248, 68%, 69%); }
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 #8a7ce6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(138, 124, 230, 10%) | #8a7ce61a | |
rgb(138, 124, 230, 20%) | #8a7ce633 | |
rgb(138, 124, 230, 40%) | #8a7ce64C | |
rgb(138, 124, 230, 60%) | #8a7ce699 | |
rgb(138, 124, 230, 80%) | #8a7ce6CC | |
rgb(138, 124, 230, 100%) | #8a7ce6FF |
Saturated and desaturated colors of #8a7ce6
HSL Code | Preview |
---|---|
hsl(248, 10%, 69%) | |
hsl(248, 20%, 69%) | |
hsl(248, 40%, 69%) | |
hsl(248, 60%, 69%) | |
hsl(248, 80%, 69%) | |
hsl(248, 100%, 69%) |
#8a7ce6 Color Usage In CSS
body { color: #8a7ce6; } p { color: rgb(138, 124, 230); } header { border-bottom:1px solid #8a7ce6; }