#f60f5e Color
Color Codes | |
---|---|
Hex Code | #f60f5e |
RGB Code | rgb(246, 15, 94) |
HSL Code | hsl(339, 93%, 51%) |
#f60f5e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 15, 94); }
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(339, 93%, 51%); }
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 #f60f5e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 15, 94, 10%) | #f60f5e1a | |
rgb(246, 15, 94, 20%) | #f60f5e33 | |
rgb(246, 15, 94, 40%) | #f60f5e4C | |
rgb(246, 15, 94, 60%) | #f60f5e99 | |
rgb(246, 15, 94, 80%) | #f60f5eCC | |
rgb(246, 15, 94, 100%) | #f60f5eFF |
Saturated and desaturated colors of #f60f5e
HSL Code | Preview |
---|---|
hsl(339, 10%, 51%) | |
hsl(339, 20%, 51%) | |
hsl(339, 40%, 51%) | |
hsl(339, 60%, 51%) | |
hsl(339, 80%, 51%) | |
hsl(339, 100%, 51%) |
#f60f5e Color Usage In CSS
body { color: #f60f5e; } p { color: rgb(246, 15, 94); } header { border-bottom:1px solid #f60f5e; }