#e0a630 Color
Color Codes | |
---|---|
Hex Code | #e0a630 |
RGB Code | rgb(224, 166, 48) |
HSL Code | hsl(40, 74%, 53%) |
#e0a630 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(224, 166, 48); }
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(40, 74%, 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 #e0a630
RGB Code | Hex Code | Preview |
---|---|---|
rgb(224, 166, 48, 10%) | #e0a6301a | |
rgb(224, 166, 48, 20%) | #e0a63033 | |
rgb(224, 166, 48, 40%) | #e0a6304C | |
rgb(224, 166, 48, 60%) | #e0a63099 | |
rgb(224, 166, 48, 80%) | #e0a630CC | |
rgb(224, 166, 48, 100%) | #e0a630FF |
Saturated and desaturated colors of #e0a630
HSL Code | Preview |
---|---|
hsl(40, 10%, 53%) | |
hsl(40, 20%, 53%) | |
hsl(40, 40%, 53%) | |
hsl(40, 60%, 53%) | |
hsl(40, 80%, 53%) | |
hsl(40, 100%, 53%) |
#e0a630 Color Usage In CSS
body { color: #e0a630; } p { color: rgb(224, 166, 48); } header { border-bottom:1px solid #e0a630; }