#f96d22 Color
Color Codes | |
---|---|
Hex Code | #f96d22 |
RGB Code | rgb(249, 109, 34) |
HSL Code | hsl(21, 95%, 55%) |
#f96d22 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 109, 34); }
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(21, 95%, 55%); }
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 #f96d22
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 109, 34, 10%) | #f96d221a | |
rgb(249, 109, 34, 20%) | #f96d2233 | |
rgb(249, 109, 34, 40%) | #f96d224C | |
rgb(249, 109, 34, 60%) | #f96d2299 | |
rgb(249, 109, 34, 80%) | #f96d22CC | |
rgb(249, 109, 34, 100%) | #f96d22FF |
Saturated and desaturated colors of #f96d22
HSL Code | Preview |
---|---|
hsl(21, 10%, 55%) | |
hsl(21, 20%, 55%) | |
hsl(21, 40%, 55%) | |
hsl(21, 60%, 55%) | |
hsl(21, 80%, 55%) | |
hsl(21, 100%, 55%) |
#f96d22 Color Usage In CSS
body { color: #f96d22; } p { color: rgb(249, 109, 34); } header { border-bottom:1px solid #f96d22; }