#9605e7 Color
Color Codes | |
---|---|
Hex Code | #9605e7 |
RGB Code | rgb(150, 05, 231) |
HSL Code | hsl(278, 96%, 46%) |
#9605e7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 05, 231); }
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(278, 96%, 46%); }
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 #9605e7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 05, 231, 10%) | #9605e71a | |
rgb(150, 05, 231, 20%) | #9605e733 | |
rgb(150, 05, 231, 40%) | #9605e74C | |
rgb(150, 05, 231, 60%) | #9605e799 | |
rgb(150, 05, 231, 80%) | #9605e7CC | |
rgb(150, 05, 231, 100%) | #9605e7FF |
Saturated and desaturated colors of #9605e7
HSL Code | Preview |
---|---|
hsl(278, 10%, 46%) | |
hsl(278, 20%, 46%) | |
hsl(278, 40%, 46%) | |
hsl(278, 60%, 46%) | |
hsl(278, 80%, 46%) | |
hsl(278, 100%, 46%) |
#9605e7 Color Usage In CSS
body { color: #9605e7; } p { color: rgb(150, 05, 231); } header { border-bottom:1px solid #9605e7; }