#f1356f Color
Color Codes | |
---|---|
Hex Code | #f1356f |
RGB Code | rgb(241, 53, 111) |
HSL Code | hsl(341, 87%, 58%) |
#f1356f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 53, 111); }
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(341, 87%, 58%); }
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 #f1356f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 53, 111, 10%) | #f1356f1a | |
rgb(241, 53, 111, 20%) | #f1356f33 | |
rgb(241, 53, 111, 40%) | #f1356f4C | |
rgb(241, 53, 111, 60%) | #f1356f99 | |
rgb(241, 53, 111, 80%) | #f1356fCC | |
rgb(241, 53, 111, 100%) | #f1356fFF |
Saturated and desaturated colors of #f1356f
HSL Code | Preview |
---|---|
hsl(341, 10%, 58%) | |
hsl(341, 20%, 58%) | |
hsl(341, 40%, 58%) | |
hsl(341, 60%, 58%) | |
hsl(341, 80%, 58%) | |
hsl(341, 100%, 58%) |
#f1356f Color Usage In CSS
body { color: #f1356f; } p { color: rgb(241, 53, 111); } header { border-bottom:1px solid #f1356f; }