#f555a3 Color
Color Codes | |
---|---|
Hex Code | #f555a3 |
RGB Code | rgb(245, 85, 163) |
HSL Code | hsl(331, 89%, 65%) |
#f555a3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 85, 163); }
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(331, 89%, 65%); }
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 #f555a3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 85, 163, 10%) | #f555a31a | |
rgb(245, 85, 163, 20%) | #f555a333 | |
rgb(245, 85, 163, 40%) | #f555a34C | |
rgb(245, 85, 163, 60%) | #f555a399 | |
rgb(245, 85, 163, 80%) | #f555a3CC | |
rgb(245, 85, 163, 100%) | #f555a3FF |
Saturated and desaturated colors of #f555a3
HSL Code | Preview |
---|---|
hsl(331, 10%, 65%) | |
hsl(331, 20%, 65%) | |
hsl(331, 40%, 65%) | |
hsl(331, 60%, 65%) | |
hsl(331, 80%, 65%) | |
hsl(331, 100%, 65%) |
#f555a3 Color Usage In CSS
body { color: #f555a3; } p { color: rgb(245, 85, 163); } header { border-bottom:1px solid #f555a3; }