#f7104b Color
Color Codes | |
---|---|
Hex Code | #f7104b |
RGB Code | rgb(247, 16, 75) |
HSL Code | hsl(345, 94%, 52%) |
#f7104b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 16, 75); }
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(345, 94%, 52%); }
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 #f7104b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 16, 75, 10%) | #f7104b1a | |
rgb(247, 16, 75, 20%) | #f7104b33 | |
rgb(247, 16, 75, 40%) | #f7104b4C | |
rgb(247, 16, 75, 60%) | #f7104b99 | |
rgb(247, 16, 75, 80%) | #f7104bCC | |
rgb(247, 16, 75, 100%) | #f7104bFF |
Saturated and desaturated colors of #f7104b
HSL Code | Preview |
---|---|
hsl(345, 10%, 52%) | |
hsl(345, 20%, 52%) | |
hsl(345, 40%, 52%) | |
hsl(345, 60%, 52%) | |
hsl(345, 80%, 52%) | |
hsl(345, 100%, 52%) |
#f7104b Color Usage In CSS
body { color: #f7104b; } p { color: rgb(247, 16, 75); } header { border-bottom:1px solid #f7104b; }