#8945f6 Color
Color Codes | |
---|---|
Hex Code | #8945f6 |
RGB Code | rgb(137, 69, 246) |
HSL Code | hsl(263, 91%, 62%) |
#8945f6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 69, 246); }
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(263, 91%, 62%); }
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 #8945f6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 69, 246, 10%) | #8945f61a | |
rgb(137, 69, 246, 20%) | #8945f633 | |
rgb(137, 69, 246, 40%) | #8945f64C | |
rgb(137, 69, 246, 60%) | #8945f699 | |
rgb(137, 69, 246, 80%) | #8945f6CC | |
rgb(137, 69, 246, 100%) | #8945f6FF |
Saturated and desaturated colors of #8945f6
HSL Code | Preview |
---|---|
hsl(263, 10%, 62%) | |
hsl(263, 20%, 62%) | |
hsl(263, 40%, 62%) | |
hsl(263, 60%, 62%) | |
hsl(263, 80%, 62%) | |
hsl(263, 100%, 62%) |
#8945f6 Color Usage In CSS
body { color: #8945f6; } p { color: rgb(137, 69, 246); } header { border-bottom:1px solid #8945f6; }