#fd637c Color
Color Codes | |
---|---|
Hex Code | #fd637c |
RGB Code | rgb(253, 99, 124) |
HSL Code | hsl(350, 97%, 69%) |
#fd637c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 99, 124); }
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(350, 97%, 69%); }
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 #fd637c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 99, 124, 10%) | #fd637c1a | |
rgb(253, 99, 124, 20%) | #fd637c33 | |
rgb(253, 99, 124, 40%) | #fd637c4C | |
rgb(253, 99, 124, 60%) | #fd637c99 | |
rgb(253, 99, 124, 80%) | #fd637cCC | |
rgb(253, 99, 124, 100%) | #fd637cFF |
Saturated and desaturated colors of #fd637c
HSL Code | Preview |
---|---|
hsl(350, 10%, 69%) | |
hsl(350, 20%, 69%) | |
hsl(350, 40%, 69%) | |
hsl(350, 60%, 69%) | |
hsl(350, 80%, 69%) | |
hsl(350, 100%, 69%) |
#fd637c Color Usage In CSS
body { color: #fd637c; } p { color: rgb(253, 99, 124); } header { border-bottom:1px solid #fd637c; }