#f77497 Color
Color Codes | |
---|---|
Hex Code | #f77497 |
RGB Code | rgb(247, 116, 151) |
HSL Code | hsl(344, 89%, 71%) |
#f77497 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 116, 151); }
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 #f77497
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 116, 151, 10%) | #f774971a | |
rgb(247, 116, 151, 20%) | #f7749733 | |
rgb(247, 116, 151, 40%) | #f774974C | |
rgb(247, 116, 151, 60%) | #f7749799 | |
rgb(247, 116, 151, 80%) | #f77497CC | |
rgb(247, 116, 151, 100%) | #f77497FF |
Saturated and desaturated colors of #f77497
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%) |
#f77497 Color Usage In CSS
body { color: #f77497; } p { color: rgb(247, 116, 151); } header { border-bottom:1px solid #f77497; }