#e7c469 Color
Color Codes | |
---|---|
Hex Code | #e7c469 |
RGB Code | rgb(231, 196, 105) |
HSL Code | hsl(43, 72%, 66%) |
#e7c469 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 196, 105); }
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(43, 72%, 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 #e7c469
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 196, 105, 10%) | #e7c4691a | |
rgb(231, 196, 105, 20%) | #e7c46933 | |
rgb(231, 196, 105, 40%) | #e7c4694C | |
rgb(231, 196, 105, 60%) | #e7c46999 | |
rgb(231, 196, 105, 80%) | #e7c469CC | |
rgb(231, 196, 105, 100%) | #e7c469FF |
Saturated and desaturated colors of #e7c469
HSL Code | Preview |
---|---|
hsl(43, 10%, 66%) | |
hsl(43, 20%, 66%) | |
hsl(43, 40%, 66%) | |
hsl(43, 60%, 66%) | |
hsl(43, 80%, 66%) | |
hsl(43, 100%, 66%) |
#e7c469 Color Usage In CSS
body { color: #e7c469; } p { color: rgb(231, 196, 105); } header { border-bottom:1px solid #e7c469; }