#f73446 Color
Color Codes | |
---|---|
Hex Code | #f73446 |
RGB Code | rgb(247, 52, 70) |
HSL Code | hsl(354, 92%, 59%) |
#f73446 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 52, 70); }
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(354, 92%, 59%); }
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 #f73446
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 52, 70, 10%) | #f734461a | |
rgb(247, 52, 70, 20%) | #f7344633 | |
rgb(247, 52, 70, 40%) | #f734464C | |
rgb(247, 52, 70, 60%) | #f7344699 | |
rgb(247, 52, 70, 80%) | #f73446CC | |
rgb(247, 52, 70, 100%) | #f73446FF |
Saturated and desaturated colors of #f73446
HSL Code | Preview |
---|---|
hsl(354, 10%, 59%) | |
hsl(354, 20%, 59%) | |
hsl(354, 40%, 59%) | |
hsl(354, 60%, 59%) | |
hsl(354, 80%, 59%) | |
hsl(354, 100%, 59%) |
#f73446 Color Usage In CSS
body { color: #f73446; } p { color: rgb(247, 52, 70); } header { border-bottom:1px solid #f73446; }