#f58c37 Color
Color Codes | |
---|---|
Hex Code | #f58c37 |
RGB Code | rgb(245, 140, 55) |
HSL Code | hsl(27, 90%, 59%) |
#f58c37 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 140, 55); }
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(27, 90%, 59%); }
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 #f58c37
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 140, 55, 10%) | #f58c371a | |
rgb(245, 140, 55, 20%) | #f58c3733 | |
rgb(245, 140, 55, 40%) | #f58c374C | |
rgb(245, 140, 55, 60%) | #f58c3799 | |
rgb(245, 140, 55, 80%) | #f58c37CC | |
rgb(245, 140, 55, 100%) | #f58c37FF |
Saturated and desaturated colors of #f58c37
HSL Code | Preview |
---|---|
hsl(27, 10%, 59%) | |
hsl(27, 20%, 59%) | |
hsl(27, 40%, 59%) | |
hsl(27, 60%, 59%) | |
hsl(27, 80%, 59%) | |
hsl(27, 100%, 59%) |
#f58c37 Color Usage In CSS
body { color: #f58c37; } p { color: rgb(245, 140, 55); } header { border-bottom:1px solid #f58c37; }