#f35008 Color
Color Codes | |
---|---|
Hex Code | #f35008 |
RGB Code | rgb(243, 80, 08) |
HSL Code | hsl(18, 94%, 49%) |
#f35008 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 80, 08); }
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(18, 94%, 49%); }
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 #f35008
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 80, 08, 10%) | #f350081a | |
rgb(243, 80, 08, 20%) | #f3500833 | |
rgb(243, 80, 08, 40%) | #f350084C | |
rgb(243, 80, 08, 60%) | #f3500899 | |
rgb(243, 80, 08, 80%) | #f35008CC | |
rgb(243, 80, 08, 100%) | #f35008FF |
Saturated and desaturated colors of #f35008
HSL Code | Preview |
---|---|
hsl(18, 10%, 49%) | |
hsl(18, 20%, 49%) | |
hsl(18, 40%, 49%) | |
hsl(18, 60%, 49%) | |
hsl(18, 80%, 49%) | |
hsl(18, 100%, 49%) |
#f35008 Color Usage In CSS
body { color: #f35008; } p { color: rgb(243, 80, 08); } header { border-bottom:1px solid #f35008; }