#ffbfb6 Color
Color Codes | |
---|---|
Hex Code | #ffbfb6 |
RGB Code | rgb(255, 191, 182) |
HSL Code | hsl(7, 100%, 86%) |
#ffbfb6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(255, 191, 182); }
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(7, 100%, 86%); }
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 #ffbfb6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(255, 191, 182, 10%) | #ffbfb61a | |
rgb(255, 191, 182, 20%) | #ffbfb633 | |
rgb(255, 191, 182, 40%) | #ffbfb64C | |
rgb(255, 191, 182, 60%) | #ffbfb699 | |
rgb(255, 191, 182, 80%) | #ffbfb6CC | |
rgb(255, 191, 182, 100%) | #ffbfb6FF |
Saturated and desaturated colors of #ffbfb6
HSL Code | Preview |
---|---|
hsl(7, 10%, 86%) | |
hsl(7, 20%, 86%) | |
hsl(7, 40%, 86%) | |
hsl(7, 60%, 86%) | |
hsl(7, 80%, 86%) | |
hsl(7, 100%, 86%) |
#ffbfb6 Color Usage In CSS
body { color: #ffbfb6; } p { color: rgb(255, 191, 182); } header { border-bottom:1px solid #ffbfb6; }