#e8d581 Color
Color Codes | |
---|---|
Hex Code | #e8d581 |
RGB Code | rgb(232, 213, 129) |
HSL Code | hsl(49, 69%, 71%) |
#e8d581 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 213, 129); }
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(49, 69%, 71%); }
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 #e8d581
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 213, 129, 10%) | #e8d5811a | |
rgb(232, 213, 129, 20%) | #e8d58133 | |
rgb(232, 213, 129, 40%) | #e8d5814C | |
rgb(232, 213, 129, 60%) | #e8d58199 | |
rgb(232, 213, 129, 80%) | #e8d581CC | |
rgb(232, 213, 129, 100%) | #e8d581FF |
Saturated and desaturated colors of #e8d581
HSL Code | Preview |
---|---|
hsl(49, 10%, 71%) | |
hsl(49, 20%, 71%) | |
hsl(49, 40%, 71%) | |
hsl(49, 60%, 71%) | |
hsl(49, 80%, 71%) | |
hsl(49, 100%, 71%) |
#e8d581 Color Usage In CSS
body { color: #e8d581; } p { color: rgb(232, 213, 129); } header { border-bottom:1px solid #e8d581; }