#fe8352 Color
Color Codes | |
---|---|
Hex Code | #fe8352 |
RGB Code | rgb(254, 131, 82) |
HSL Code | hsl(17, 99%, 66%) |
#fe8352 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 131, 82); }
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(17, 99%, 66%); }
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 #fe8352
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 131, 82, 10%) | #fe83521a | |
rgb(254, 131, 82, 20%) | #fe835233 | |
rgb(254, 131, 82, 40%) | #fe83524C | |
rgb(254, 131, 82, 60%) | #fe835299 | |
rgb(254, 131, 82, 80%) | #fe8352CC | |
rgb(254, 131, 82, 100%) | #fe8352FF |
Saturated and desaturated colors of #fe8352
HSL Code | Preview |
---|---|
hsl(17, 10%, 66%) | |
hsl(17, 20%, 66%) | |
hsl(17, 40%, 66%) | |
hsl(17, 60%, 66%) | |
hsl(17, 80%, 66%) | |
hsl(17, 100%, 66%) |
#fe8352 Color Usage In CSS
body { color: #fe8352; } p { color: rgb(254, 131, 82); } header { border-bottom:1px solid #fe8352; }