#f77486 Color
Color Codes | |
---|---|
Hex Code | #f77486 |
RGB Code | rgb(247, 116, 134) |
HSL Code | hsl(352, 89%, 71%) |
#f77486 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 116, 134); }
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(352, 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 #f77486
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 116, 134, 10%) | #f774861a | |
rgb(247, 116, 134, 20%) | #f7748633 | |
rgb(247, 116, 134, 40%) | #f774864C | |
rgb(247, 116, 134, 60%) | #f7748699 | |
rgb(247, 116, 134, 80%) | #f77486CC | |
rgb(247, 116, 134, 100%) | #f77486FF |
Saturated and desaturated colors of #f77486
HSL Code | Preview |
---|---|
hsl(352, 10%, 71%) | |
hsl(352, 20%, 71%) | |
hsl(352, 40%, 71%) | |
hsl(352, 60%, 71%) | |
hsl(352, 80%, 71%) | |
hsl(352, 100%, 71%) |
#f77486 Color Usage In CSS
body { color: #f77486; } p { color: rgb(247, 116, 134); } header { border-bottom:1px solid #f77486; }