#cfbfb4 Color
Color Codes | |
---|---|
Hex Code | #cfbfb4 |
RGB Code | rgb(207, 191, 180) |
HSL Code | hsl(24, 22%, 76%) |
#cfbfb4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 191, 180); }
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(24, 22%, 76%); }
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 #cfbfb4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 191, 180, 10%) | #cfbfb41a | |
rgb(207, 191, 180, 20%) | #cfbfb433 | |
rgb(207, 191, 180, 40%) | #cfbfb44C | |
rgb(207, 191, 180, 60%) | #cfbfb499 | |
rgb(207, 191, 180, 80%) | #cfbfb4CC | |
rgb(207, 191, 180, 100%) | #cfbfb4FF |
Saturated and desaturated colors of #cfbfb4
HSL Code | Preview |
---|---|
hsl(24, 10%, 76%) | |
hsl(24, 20%, 76%) | |
hsl(24, 40%, 76%) | |
hsl(24, 60%, 76%) | |
hsl(24, 80%, 76%) | |
hsl(24, 100%, 76%) |
#cfbfb4 Color Usage In CSS
body { color: #cfbfb4; } p { color: rgb(207, 191, 180); } header { border-bottom:1px solid #cfbfb4; }