#ef8120 Color
Color Codes | |
---|---|
Hex Code | #ef8120 |
RGB Code | rgb(239, 129, 32) |
HSL Code | hsl(28, 87%, 53%) |
#ef8120 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(239, 129, 32); }
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(28, 87%, 53%); }
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 #ef8120
RGB Code | Hex Code | Preview |
---|---|---|
rgb(239, 129, 32, 10%) | #ef81201a | |
rgb(239, 129, 32, 20%) | #ef812033 | |
rgb(239, 129, 32, 40%) | #ef81204C | |
rgb(239, 129, 32, 60%) | #ef812099 | |
rgb(239, 129, 32, 80%) | #ef8120CC | |
rgb(239, 129, 32, 100%) | #ef8120FF |
Saturated and desaturated colors of #ef8120
HSL Code | Preview |
---|---|
hsl(28, 10%, 53%) | |
hsl(28, 20%, 53%) | |
hsl(28, 40%, 53%) | |
hsl(28, 60%, 53%) | |
hsl(28, 80%, 53%) | |
hsl(28, 100%, 53%) |
#ef8120 Color Usage In CSS
body { color: #ef8120; } p { color: rgb(239, 129, 32); } header { border-bottom:1px solid #ef8120; }