#ce9bc9 Color
Color Codes | |
---|---|
Hex Code | #ce9bc9 |
RGB Code | rgb(206, 155, 201) |
HSL Code | hsl(306, 34%, 71%) |
#ce9bc9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 155, 201); }
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(306, 34%, 71%); }
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 #ce9bc9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 155, 201, 10%) | #ce9bc91a | |
rgb(206, 155, 201, 20%) | #ce9bc933 | |
rgb(206, 155, 201, 40%) | #ce9bc94C | |
rgb(206, 155, 201, 60%) | #ce9bc999 | |
rgb(206, 155, 201, 80%) | #ce9bc9CC | |
rgb(206, 155, 201, 100%) | #ce9bc9FF |
Saturated and desaturated colors of #ce9bc9
HSL Code | Preview |
---|---|
hsl(306, 10%, 71%) | |
hsl(306, 20%, 71%) | |
hsl(306, 40%, 71%) | |
hsl(306, 60%, 71%) | |
hsl(306, 80%, 71%) | |
hsl(306, 100%, 71%) |
#ce9bc9 Color Usage In CSS
body { color: #ce9bc9; } p { color: rgb(206, 155, 201); } header { border-bottom:1px solid #ce9bc9; }