#f44760 Color
Color Codes | |
---|---|
Hex Code | #f44760 |
RGB Code | rgb(244, 71, 96) |
HSL Code | hsl(351, 89%, 62%) |
#f44760 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 71, 96); }
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(351, 89%, 62%); }
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 #f44760
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 71, 96, 10%) | #f447601a | |
rgb(244, 71, 96, 20%) | #f4476033 | |
rgb(244, 71, 96, 40%) | #f447604C | |
rgb(244, 71, 96, 60%) | #f4476099 | |
rgb(244, 71, 96, 80%) | #f44760CC | |
rgb(244, 71, 96, 100%) | #f44760FF |
Saturated and desaturated colors of #f44760
HSL Code | Preview |
---|---|
hsl(351, 10%, 62%) | |
hsl(351, 20%, 62%) | |
hsl(351, 40%, 62%) | |
hsl(351, 60%, 62%) | |
hsl(351, 80%, 62%) | |
hsl(351, 100%, 62%) |
#f44760 Color Usage In CSS
body { color: #f44760; } p { color: rgb(244, 71, 96); } header { border-bottom:1px solid #f44760; }