#e9bb73 Color
Color Codes | |
---|---|
Hex Code | #e9bb73 |
RGB Code | rgb(233, 187, 115) |
HSL Code | hsl(37, 73%, 68%) |
#e9bb73 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 187, 115); }
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(37, 73%, 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 #e9bb73
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 187, 115, 10%) | #e9bb731a | |
rgb(233, 187, 115, 20%) | #e9bb7333 | |
rgb(233, 187, 115, 40%) | #e9bb734C | |
rgb(233, 187, 115, 60%) | #e9bb7399 | |
rgb(233, 187, 115, 80%) | #e9bb73CC | |
rgb(233, 187, 115, 100%) | #e9bb73FF |
Saturated and desaturated colors of #e9bb73
HSL Code | Preview |
---|---|
hsl(37, 10%, 68%) | |
hsl(37, 20%, 68%) | |
hsl(37, 40%, 68%) | |
hsl(37, 60%, 68%) | |
hsl(37, 80%, 68%) | |
hsl(37, 100%, 68%) |
#e9bb73 Color Usage In CSS
body { color: #e9bb73; } p { color: rgb(233, 187, 115); } header { border-bottom:1px solid #e9bb73; }