#f6555f Color
Color Codes | |
---|---|
Hex Code | #f6555f |
RGB Code | rgb(246, 85, 95) |
HSL Code | hsl(356, 90%, 65%) |
#f6555f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 85, 95); }
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(356, 90%, 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 #f6555f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 85, 95, 10%) | #f6555f1a | |
rgb(246, 85, 95, 20%) | #f6555f33 | |
rgb(246, 85, 95, 40%) | #f6555f4C | |
rgb(246, 85, 95, 60%) | #f6555f99 | |
rgb(246, 85, 95, 80%) | #f6555fCC | |
rgb(246, 85, 95, 100%) | #f6555fFF |
Saturated and desaturated colors of #f6555f
HSL Code | Preview |
---|---|
hsl(356, 10%, 65%) | |
hsl(356, 20%, 65%) | |
hsl(356, 40%, 65%) | |
hsl(356, 60%, 65%) | |
hsl(356, 80%, 65%) | |
hsl(356, 100%, 65%) |
#f6555f Color Usage In CSS
body { color: #f6555f; } p { color: rgb(246, 85, 95); } header { border-bottom:1px solid #f6555f; }