#fd3973 Color
Color Codes | |
---|---|
Hex Code | #fd3973 |
RGB Code | rgb(253, 57, 115) |
HSL Code | hsl(342, 98%, 61%) |
#fd3973 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 57, 115); }
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(342, 98%, 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 #fd3973
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 57, 115, 10%) | #fd39731a | |
rgb(253, 57, 115, 20%) | #fd397333 | |
rgb(253, 57, 115, 40%) | #fd39734C | |
rgb(253, 57, 115, 60%) | #fd397399 | |
rgb(253, 57, 115, 80%) | #fd3973CC | |
rgb(253, 57, 115, 100%) | #fd3973FF |
Saturated and desaturated colors of #fd3973
HSL Code | Preview |
---|---|
hsl(342, 10%, 61%) | |
hsl(342, 20%, 61%) | |
hsl(342, 40%, 61%) | |
hsl(342, 60%, 61%) | |
hsl(342, 80%, 61%) | |
hsl(342, 100%, 61%) |
#fd3973 Color Usage In CSS
body { color: #fd3973; } p { color: rgb(253, 57, 115); } header { border-bottom:1px solid #fd3973; }