#f7770c Color
Color Codes | |
---|---|
Hex Code | #f7770c |
RGB Code | rgb(247, 119, 12) |
HSL Code | hsl(27, 94%, 51%) |
#f7770c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 119, 12); }
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(27, 94%, 51%); }
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 #f7770c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 119, 12, 10%) | #f7770c1a | |
rgb(247, 119, 12, 20%) | #f7770c33 | |
rgb(247, 119, 12, 40%) | #f7770c4C | |
rgb(247, 119, 12, 60%) | #f7770c99 | |
rgb(247, 119, 12, 80%) | #f7770cCC | |
rgb(247, 119, 12, 100%) | #f7770cFF |
Saturated and desaturated colors of #f7770c
HSL Code | Preview |
---|---|
hsl(27, 10%, 51%) | |
hsl(27, 20%, 51%) | |
hsl(27, 40%, 51%) | |
hsl(27, 60%, 51%) | |
hsl(27, 80%, 51%) | |
hsl(27, 100%, 51%) |
#f7770c Color Usage In CSS
body { color: #f7770c; } p { color: rgb(247, 119, 12); } header { border-bottom:1px solid #f7770c; }