#8469de Color
Color Codes | |
---|---|
Hex Code | #8469de |
RGB Code | rgb(132, 105, 222) |
HSL Code | hsl(254, 64%, 64%) |
#8469de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 105, 222); }
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(254, 64%, 64%); }
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 #8469de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 105, 222, 10%) | #8469de1a | |
rgb(132, 105, 222, 20%) | #8469de33 | |
rgb(132, 105, 222, 40%) | #8469de4C | |
rgb(132, 105, 222, 60%) | #8469de99 | |
rgb(132, 105, 222, 80%) | #8469deCC | |
rgb(132, 105, 222, 100%) | #8469deFF |
Saturated and desaturated colors of #8469de
HSL Code | Preview |
---|---|
hsl(254, 10%, 64%) | |
hsl(254, 20%, 64%) | |
hsl(254, 40%, 64%) | |
hsl(254, 60%, 64%) | |
hsl(254, 80%, 64%) | |
hsl(254, 100%, 64%) |
#8469de Color Usage In CSS
body { color: #8469de; } p { color: rgb(132, 105, 222); } header { border-bottom:1px solid #8469de; }