#f47425 Color
Color Codes | |
---|---|
Hex Code | #f47425 |
RGB Code | rgb(244, 116, 37) |
HSL Code | hsl(23, 90%, 55%) |
#f47425 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 116, 37); }
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(23, 90%, 55%); }
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 #f47425
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 116, 37, 10%) | #f474251a | |
rgb(244, 116, 37, 20%) | #f4742533 | |
rgb(244, 116, 37, 40%) | #f474254C | |
rgb(244, 116, 37, 60%) | #f4742599 | |
rgb(244, 116, 37, 80%) | #f47425CC | |
rgb(244, 116, 37, 100%) | #f47425FF |
Saturated and desaturated colors of #f47425
HSL Code | Preview |
---|---|
hsl(23, 10%, 55%) | |
hsl(23, 20%, 55%) | |
hsl(23, 40%, 55%) | |
hsl(23, 60%, 55%) | |
hsl(23, 80%, 55%) | |
hsl(23, 100%, 55%) |
#f47425 Color Usage In CSS
body { color: #f47425; } p { color: rgb(244, 116, 37); } header { border-bottom:1px solid #f47425; }