#f77f93 Color
Color Codes | |
---|---|
Hex Code | #f77f93 |
RGB Code | rgb(247, 127, 147) |
HSL Code | hsl(350, 88%, 73%) |
#f77f93 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 127, 147); }
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(350, 88%, 73%); }
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 #f77f93
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 127, 147, 10%) | #f77f931a | |
rgb(247, 127, 147, 20%) | #f77f9333 | |
rgb(247, 127, 147, 40%) | #f77f934C | |
rgb(247, 127, 147, 60%) | #f77f9399 | |
rgb(247, 127, 147, 80%) | #f77f93CC | |
rgb(247, 127, 147, 100%) | #f77f93FF |
Saturated and desaturated colors of #f77f93
HSL Code | Preview |
---|---|
hsl(350, 10%, 73%) | |
hsl(350, 20%, 73%) | |
hsl(350, 40%, 73%) | |
hsl(350, 60%, 73%) | |
hsl(350, 80%, 73%) | |
hsl(350, 100%, 73%) |
#f77f93 Color Usage In CSS
body { color: #f77f93; } p { color: rgb(247, 127, 147); } header { border-bottom:1px solid #f77f93; }