#fbacf0 Color
Color Codes | |
---|---|
Hex Code | #fbacf0 |
RGB Code | rgb(251, 172, 240) |
HSL Code | hsl(308, 91%, 83%) |
#fbacf0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 172, 240); }
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(308, 91%, 83%); }
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 #fbacf0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 172, 240, 10%) | #fbacf01a | |
rgb(251, 172, 240, 20%) | #fbacf033 | |
rgb(251, 172, 240, 40%) | #fbacf04C | |
rgb(251, 172, 240, 60%) | #fbacf099 | |
rgb(251, 172, 240, 80%) | #fbacf0CC | |
rgb(251, 172, 240, 100%) | #fbacf0FF |
Saturated and desaturated colors of #fbacf0
HSL Code | Preview |
---|---|
hsl(308, 10%, 83%) | |
hsl(308, 20%, 83%) | |
hsl(308, 40%, 83%) | |
hsl(308, 60%, 83%) | |
hsl(308, 80%, 83%) | |
hsl(308, 100%, 83%) |
#fbacf0 Color Usage In CSS
body { color: #fbacf0; } p { color: rgb(251, 172, 240); } header { border-bottom:1px solid #fbacf0; }