#f77195 Color
Color Codes | |
---|---|
Hex Code | #f77195 |
RGB Code | rgb(247, 113, 149) |
HSL Code | hsl(344, 89%, 71%) |
#f77195 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 113, 149); }
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(344, 89%, 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 #f77195
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 113, 149, 10%) | #f771951a | |
rgb(247, 113, 149, 20%) | #f7719533 | |
rgb(247, 113, 149, 40%) | #f771954C | |
rgb(247, 113, 149, 60%) | #f7719599 | |
rgb(247, 113, 149, 80%) | #f77195CC | |
rgb(247, 113, 149, 100%) | #f77195FF |
Saturated and desaturated colors of #f77195
HSL Code | Preview |
---|---|
hsl(344, 10%, 71%) | |
hsl(344, 20%, 71%) | |
hsl(344, 40%, 71%) | |
hsl(344, 60%, 71%) | |
hsl(344, 80%, 71%) | |
hsl(344, 100%, 71%) |
#f77195 Color Usage In CSS
body { color: #f77195; } p { color: rgb(247, 113, 149); } header { border-bottom:1px solid #f77195; }