#fb9c89 Color
Color Codes | |
---|---|
Hex Code | #fb9c89 |
RGB Code | rgb(251, 156, 137) |
HSL Code | hsl(10, 93%, 76%) |
#fb9c89 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 156, 137); }
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(10, 93%, 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 #fb9c89
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 156, 137, 10%) | #fb9c891a | |
rgb(251, 156, 137, 20%) | #fb9c8933 | |
rgb(251, 156, 137, 40%) | #fb9c894C | |
rgb(251, 156, 137, 60%) | #fb9c8999 | |
rgb(251, 156, 137, 80%) | #fb9c89CC | |
rgb(251, 156, 137, 100%) | #fb9c89FF |
Saturated and desaturated colors of #fb9c89
HSL Code | Preview |
---|---|
hsl(10, 10%, 76%) | |
hsl(10, 20%, 76%) | |
hsl(10, 40%, 76%) | |
hsl(10, 60%, 76%) | |
hsl(10, 80%, 76%) | |
hsl(10, 100%, 76%) |
#fb9c89 Color Usage In CSS
body { color: #fb9c89; } p { color: rgb(251, 156, 137); } header { border-bottom:1px solid #fb9c89; }