#8c41f7 Color
Color Codes | |
---|---|
Hex Code | #8c41f7 |
RGB Code | rgb(140, 65, 247) |
HSL Code | hsl(265, 92%, 61%) |
#8c41f7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(140, 65, 247); }
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(265, 92%, 61%); }
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 #8c41f7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(140, 65, 247, 10%) | #8c41f71a | |
rgb(140, 65, 247, 20%) | #8c41f733 | |
rgb(140, 65, 247, 40%) | #8c41f74C | |
rgb(140, 65, 247, 60%) | #8c41f799 | |
rgb(140, 65, 247, 80%) | #8c41f7CC | |
rgb(140, 65, 247, 100%) | #8c41f7FF |
Saturated and desaturated colors of #8c41f7
HSL Code | Preview |
---|---|
hsl(265, 10%, 61%) | |
hsl(265, 20%, 61%) | |
hsl(265, 40%, 61%) | |
hsl(265, 60%, 61%) | |
hsl(265, 80%, 61%) | |
hsl(265, 100%, 61%) |
#8c41f7 Color Usage In CSS
body { color: #8c41f7; } p { color: rgb(140, 65, 247); } header { border-bottom:1px solid #8c41f7; }