#f47749 Color
Color Codes | |
---|---|
Hex Code | #f47749 |
RGB Code | rgb(244, 119, 73) |
HSL Code | hsl(16, 89%, 62%) |
#f47749 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 119, 73); }
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(16, 89%, 62%); }
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 #f47749
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 119, 73, 10%) | #f477491a | |
rgb(244, 119, 73, 20%) | #f4774933 | |
rgb(244, 119, 73, 40%) | #f477494C | |
rgb(244, 119, 73, 60%) | #f4774999 | |
rgb(244, 119, 73, 80%) | #f47749CC | |
rgb(244, 119, 73, 100%) | #f47749FF |
Saturated and desaturated colors of #f47749
HSL Code | Preview |
---|---|
hsl(16, 10%, 62%) | |
hsl(16, 20%, 62%) | |
hsl(16, 40%, 62%) | |
hsl(16, 60%, 62%) | |
hsl(16, 80%, 62%) | |
hsl(16, 100%, 62%) |
#f47749 Color Usage In CSS
body { color: #f47749; } p { color: rgb(244, 119, 73); } header { border-bottom:1px solid #f47749; }