#f82d10 Color
Color Codes | |
---|---|
Hex Code | #f82d10 |
RGB Code | rgb(248, 45, 16) |
HSL Code | hsl(8, 94%, 52%) |
#f82d10 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 45, 16); }
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(8, 94%, 52%); }
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 #f82d10
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 45, 16, 10%) | #f82d101a | |
rgb(248, 45, 16, 20%) | #f82d1033 | |
rgb(248, 45, 16, 40%) | #f82d104C | |
rgb(248, 45, 16, 60%) | #f82d1099 | |
rgb(248, 45, 16, 80%) | #f82d10CC | |
rgb(248, 45, 16, 100%) | #f82d10FF |
Saturated and desaturated colors of #f82d10
HSL Code | Preview |
---|---|
hsl(8, 10%, 52%) | |
hsl(8, 20%, 52%) | |
hsl(8, 40%, 52%) | |
hsl(8, 60%, 52%) | |
hsl(8, 80%, 52%) | |
hsl(8, 100%, 52%) |
#f82d10 Color Usage In CSS
body { color: #f82d10; } p { color: rgb(248, 45, 16); } header { border-bottom:1px solid #f82d10; }