#e3d076 Color
Color Codes | |
---|---|
Hex Code | #e3d076 |
RGB Code | rgb(227, 208, 118) |
HSL Code | hsl(50, 66%, 68%) |
#e3d076 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 208, 118); }
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(50, 66%, 68%); }
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 #e3d076
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 208, 118, 10%) | #e3d0761a | |
rgb(227, 208, 118, 20%) | #e3d07633 | |
rgb(227, 208, 118, 40%) | #e3d0764C | |
rgb(227, 208, 118, 60%) | #e3d07699 | |
rgb(227, 208, 118, 80%) | #e3d076CC | |
rgb(227, 208, 118, 100%) | #e3d076FF |
Saturated and desaturated colors of #e3d076
HSL Code | Preview |
---|---|
hsl(50, 10%, 68%) | |
hsl(50, 20%, 68%) | |
hsl(50, 40%, 68%) | |
hsl(50, 60%, 68%) | |
hsl(50, 80%, 68%) | |
hsl(50, 100%, 68%) |
#e3d076 Color Usage In CSS
body { color: #e3d076; } p { color: rgb(227, 208, 118); } header { border-bottom:1px solid #e3d076; }