#e6d76c Color
Color Codes | |
---|---|
Hex Code | #e6d76c |
RGB Code | rgb(230, 215, 108) |
HSL Code | hsl(53, 71%, 66%) |
#e6d76c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 215, 108); }
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(53, 71%, 66%); }
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 #e6d76c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 215, 108, 10%) | #e6d76c1a | |
rgb(230, 215, 108, 20%) | #e6d76c33 | |
rgb(230, 215, 108, 40%) | #e6d76c4C | |
rgb(230, 215, 108, 60%) | #e6d76c99 | |
rgb(230, 215, 108, 80%) | #e6d76cCC | |
rgb(230, 215, 108, 100%) | #e6d76cFF |
Saturated and desaturated colors of #e6d76c
HSL Code | Preview |
---|---|
hsl(53, 10%, 66%) | |
hsl(53, 20%, 66%) | |
hsl(53, 40%, 66%) | |
hsl(53, 60%, 66%) | |
hsl(53, 80%, 66%) | |
hsl(53, 100%, 66%) |
#e6d76c Color Usage In CSS
body { color: #e6d76c; } p { color: rgb(230, 215, 108); } header { border-bottom:1px solid #e6d76c; }