#e8a434 Color
Color Codes | |
---|---|
Hex Code | #e8a434 |
RGB Code | rgb(232, 164, 52) |
HSL Code | hsl(37, 80%, 56%) |
#e8a434 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 164, 52); }
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(37, 80%, 56%); }
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 #e8a434
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 164, 52, 10%) | #e8a4341a | |
rgb(232, 164, 52, 20%) | #e8a43433 | |
rgb(232, 164, 52, 40%) | #e8a4344C | |
rgb(232, 164, 52, 60%) | #e8a43499 | |
rgb(232, 164, 52, 80%) | #e8a434CC | |
rgb(232, 164, 52, 100%) | #e8a434FF |
Saturated and desaturated colors of #e8a434
HSL Code | Preview |
---|---|
hsl(37, 10%, 56%) | |
hsl(37, 20%, 56%) | |
hsl(37, 40%, 56%) | |
hsl(37, 60%, 56%) | |
hsl(37, 80%, 56%) | |
hsl(37, 100%, 56%) |
#e8a434 Color Usage In CSS
body { color: #e8a434; } p { color: rgb(232, 164, 52); } header { border-bottom:1px solid #e8a434; }