#b69ad5 Color
Color Codes | |
---|---|
Hex Code | #b69ad5 |
RGB Code | rgb(182, 154, 213) |
HSL Code | hsl(268, 41%, 72%) |
#b69ad5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 154, 213); }
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, 41%, 72%); }
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 #b69ad5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 154, 213, 10%) | #b69ad51a | |
rgb(182, 154, 213, 20%) | #b69ad533 | |
rgb(182, 154, 213, 40%) | #b69ad54C | |
rgb(182, 154, 213, 60%) | #b69ad599 | |
rgb(182, 154, 213, 80%) | #b69ad5CC | |
rgb(182, 154, 213, 100%) | #b69ad5FF |
Saturated and desaturated colors of #b69ad5
HSL Code | Preview |
---|---|
hsl(268, 10%, 72%) | |
hsl(268, 20%, 72%) | |
hsl(268, 40%, 72%) | |
hsl(268, 60%, 72%) | |
hsl(268, 80%, 72%) | |
hsl(268, 100%, 72%) |
#b69ad5 Color Usage In CSS
body { color: #b69ad5; } p { color: rgb(182, 154, 213); } header { border-bottom:1px solid #b69ad5; }