#a563f3 Color
Color Codes | |
---|---|
Hex Code | #a563f3 |
RGB Code | rgb(165, 99, 243) |
HSL Code | hsl(268, 86%, 67%) |
#a563f3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 99, 243); }
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(268, 86%, 67%); }
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 #a563f3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 99, 243, 10%) | #a563f31a | |
rgb(165, 99, 243, 20%) | #a563f333 | |
rgb(165, 99, 243, 40%) | #a563f34C | |
rgb(165, 99, 243, 60%) | #a563f399 | |
rgb(165, 99, 243, 80%) | #a563f3CC | |
rgb(165, 99, 243, 100%) | #a563f3FF |
Saturated and desaturated colors of #a563f3
HSL Code | Preview |
---|---|
hsl(268, 10%, 67%) | |
hsl(268, 20%, 67%) | |
hsl(268, 40%, 67%) | |
hsl(268, 60%, 67%) | |
hsl(268, 80%, 67%) | |
hsl(268, 100%, 67%) |
#a563f3 Color Usage In CSS
body { color: #a563f3; } p { color: rgb(165, 99, 243); } header { border-bottom:1px solid #a563f3; }