#b693ae Color
Color Codes | |
---|---|
Hex Code | #b693ae |
RGB Code | rgb(182, 147, 174) |
HSL Code | hsl(314, 19%, 65%) |
#b693ae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 147, 174); }
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(314, 19%, 65%); }
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 #b693ae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 147, 174, 10%) | #b693ae1a | |
rgb(182, 147, 174, 20%) | #b693ae33 | |
rgb(182, 147, 174, 40%) | #b693ae4C | |
rgb(182, 147, 174, 60%) | #b693ae99 | |
rgb(182, 147, 174, 80%) | #b693aeCC | |
rgb(182, 147, 174, 100%) | #b693aeFF |
Saturated and desaturated colors of #b693ae
HSL Code | Preview |
---|---|
hsl(314, 10%, 65%) | |
hsl(314, 20%, 65%) | |
hsl(314, 40%, 65%) | |
hsl(314, 60%, 65%) | |
hsl(314, 80%, 65%) | |
hsl(314, 100%, 65%) |
#b693ae Color Usage In CSS
body { color: #b693ae; } p { color: rgb(182, 147, 174); } header { border-bottom:1px solid #b693ae; }