#f83a45 Color
Color Codes | |
---|---|
Hex Code | #f83a45 |
RGB Code | rgb(248, 58, 69) |
HSL Code | hsl(357, 93%, 60%) |
#f83a45 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 58, 69); }
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(357, 93%, 60%); }
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 #f83a45
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 58, 69, 10%) | #f83a451a | |
rgb(248, 58, 69, 20%) | #f83a4533 | |
rgb(248, 58, 69, 40%) | #f83a454C | |
rgb(248, 58, 69, 60%) | #f83a4599 | |
rgb(248, 58, 69, 80%) | #f83a45CC | |
rgb(248, 58, 69, 100%) | #f83a45FF |
Saturated and desaturated colors of #f83a45
HSL Code | Preview |
---|---|
hsl(357, 10%, 60%) | |
hsl(357, 20%, 60%) | |
hsl(357, 40%, 60%) | |
hsl(357, 60%, 60%) | |
hsl(357, 80%, 60%) | |
hsl(357, 100%, 60%) |
#f83a45 Color Usage In CSS
body { color: #f83a45; } p { color: rgb(248, 58, 69); } header { border-bottom:1px solid #f83a45; }