#f07d53 Color
Color Codes | |
---|---|
Hex Code | #f07d53 |
RGB Code | rgb(240, 125, 83) |
HSL Code | hsl(16, 84%, 63%) |
#f07d53 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(240, 125, 83); }
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, 84%, 63%); }
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 #f07d53
RGB Code | Hex Code | Preview |
---|---|---|
rgb(240, 125, 83, 10%) | #f07d531a | |
rgb(240, 125, 83, 20%) | #f07d5333 | |
rgb(240, 125, 83, 40%) | #f07d534C | |
rgb(240, 125, 83, 60%) | #f07d5399 | |
rgb(240, 125, 83, 80%) | #f07d53CC | |
rgb(240, 125, 83, 100%) | #f07d53FF |
Saturated and desaturated colors of #f07d53
HSL Code | Preview |
---|---|
hsl(16, 10%, 63%) | |
hsl(16, 20%, 63%) | |
hsl(16, 40%, 63%) | |
hsl(16, 60%, 63%) | |
hsl(16, 80%, 63%) | |
hsl(16, 100%, 63%) |
#f07d53 Color Usage In CSS
body { color: #f07d53; } p { color: rgb(240, 125, 83); } header { border-bottom:1px solid #f07d53; }