#f63f89 Color
Color Codes | |
---|---|
Hex Code | #f63f89 |
RGB Code | rgb(246, 63, 137) |
HSL Code | hsl(336, 91%, 61%) |
#f63f89 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 63, 137); }
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(336, 91%, 61%); }
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 #f63f89
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 63, 137, 10%) | #f63f891a | |
rgb(246, 63, 137, 20%) | #f63f8933 | |
rgb(246, 63, 137, 40%) | #f63f894C | |
rgb(246, 63, 137, 60%) | #f63f8999 | |
rgb(246, 63, 137, 80%) | #f63f89CC | |
rgb(246, 63, 137, 100%) | #f63f89FF |
Saturated and desaturated colors of #f63f89
HSL Code | Preview |
---|---|
hsl(336, 10%, 61%) | |
hsl(336, 20%, 61%) | |
hsl(336, 40%, 61%) | |
hsl(336, 60%, 61%) | |
hsl(336, 80%, 61%) | |
hsl(336, 100%, 61%) |
#f63f89 Color Usage In CSS
body { color: #f63f89; } p { color: rgb(246, 63, 137); } header { border-bottom:1px solid #f63f89; }