#fe4847 Color
Color Codes | |
---|---|
Hex Code | #fe4847 |
RGB Code | rgb(254, 72, 71) |
HSL Code | hsl(0, 99%, 64%) |
#fe4847 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 72, 71); }
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(0, 99%, 64%); }
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 #fe4847
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 72, 71, 10%) | #fe48471a | |
rgb(254, 72, 71, 20%) | #fe484733 | |
rgb(254, 72, 71, 40%) | #fe48474C | |
rgb(254, 72, 71, 60%) | #fe484799 | |
rgb(254, 72, 71, 80%) | #fe4847CC | |
rgb(254, 72, 71, 100%) | #fe4847FF |
Saturated and desaturated colors of #fe4847
HSL Code | Preview |
---|---|
hsl(0, 10%, 64%) | |
hsl(0, 20%, 64%) | |
hsl(0, 40%, 64%) | |
hsl(0, 60%, 64%) | |
hsl(0, 80%, 64%) | |
hsl(0, 100%, 64%) |
#fe4847 Color Usage In CSS
body { color: #fe4847; } p { color: rgb(254, 72, 71); } header { border-bottom:1px solid #fe4847; }