#e76242 Color
Color Codes | |
---|---|
Hex Code | #e76242 |
RGB Code | rgb(231, 98, 66) |
HSL Code | hsl(12, 77%, 58%) |
#e76242 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 98, 66); }
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(12, 77%, 58%); }
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 #e76242
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 98, 66, 10%) | #e762421a | |
rgb(231, 98, 66, 20%) | #e7624233 | |
rgb(231, 98, 66, 40%) | #e762424C | |
rgb(231, 98, 66, 60%) | #e7624299 | |
rgb(231, 98, 66, 80%) | #e76242CC | |
rgb(231, 98, 66, 100%) | #e76242FF |
Saturated and desaturated colors of #e76242
HSL Code | Preview |
---|---|
hsl(12, 10%, 58%) | |
hsl(12, 20%, 58%) | |
hsl(12, 40%, 58%) | |
hsl(12, 60%, 58%) | |
hsl(12, 80%, 58%) | |
hsl(12, 100%, 58%) |
#e76242 Color Usage In CSS
body { color: #e76242; } p { color: rgb(231, 98, 66); } header { border-bottom:1px solid #e76242; }