#f75894 Color
Color Codes | |
---|---|
Hex Code | #f75894 |
RGB Code | rgb(247, 88, 148) |
HSL Code | hsl(337, 91%, 66%) |
#f75894 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 88, 148); }
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(337, 91%, 66%); }
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 #f75894
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 88, 148, 10%) | #f758941a | |
rgb(247, 88, 148, 20%) | #f7589433 | |
rgb(247, 88, 148, 40%) | #f758944C | |
rgb(247, 88, 148, 60%) | #f7589499 | |
rgb(247, 88, 148, 80%) | #f75894CC | |
rgb(247, 88, 148, 100%) | #f75894FF |
Saturated and desaturated colors of #f75894
HSL Code | Preview |
---|---|
hsl(337, 10%, 66%) | |
hsl(337, 20%, 66%) | |
hsl(337, 40%, 66%) | |
hsl(337, 60%, 66%) | |
hsl(337, 80%, 66%) | |
hsl(337, 100%, 66%) |
#f75894 Color Usage In CSS
body { color: #f75894; } p { color: rgb(247, 88, 148); } header { border-bottom:1px solid #f75894; }