#fd7174 Color
Color Codes | |
---|---|
Hex Code | #fd7174 |
RGB Code | rgb(253, 113, 116) |
HSL Code | hsl(359, 97%, 72%) |
#fd7174 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 113, 116); }
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(359, 97%, 72%); }
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 #fd7174
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 113, 116, 10%) | #fd71741a | |
rgb(253, 113, 116, 20%) | #fd717433 | |
rgb(253, 113, 116, 40%) | #fd71744C | |
rgb(253, 113, 116, 60%) | #fd717499 | |
rgb(253, 113, 116, 80%) | #fd7174CC | |
rgb(253, 113, 116, 100%) | #fd7174FF |
Saturated and desaturated colors of #fd7174
HSL Code | Preview |
---|---|
hsl(359, 10%, 72%) | |
hsl(359, 20%, 72%) | |
hsl(359, 40%, 72%) | |
hsl(359, 60%, 72%) | |
hsl(359, 80%, 72%) | |
hsl(359, 100%, 72%) |
#fd7174 Color Usage In CSS
body { color: #fd7174; } p { color: rgb(253, 113, 116); } header { border-bottom:1px solid #fd7174; }