#e8b02b Color
Color Codes | |
---|---|
Hex Code | #e8b02b |
RGB Code | rgb(232, 176, 43) |
HSL Code | hsl(42, 80%, 54%) |
#e8b02b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 176, 43); }
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(42, 80%, 54%); }
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 #e8b02b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 176, 43, 10%) | #e8b02b1a | |
rgb(232, 176, 43, 20%) | #e8b02b33 | |
rgb(232, 176, 43, 40%) | #e8b02b4C | |
rgb(232, 176, 43, 60%) | #e8b02b99 | |
rgb(232, 176, 43, 80%) | #e8b02bCC | |
rgb(232, 176, 43, 100%) | #e8b02bFF |
Saturated and desaturated colors of #e8b02b
HSL Code | Preview |
---|---|
hsl(42, 10%, 54%) | |
hsl(42, 20%, 54%) | |
hsl(42, 40%, 54%) | |
hsl(42, 60%, 54%) | |
hsl(42, 80%, 54%) | |
hsl(42, 100%, 54%) |
#e8b02b Color Usage In CSS
body { color: #e8b02b; } p { color: rgb(232, 176, 43); } header { border-bottom:1px solid #e8b02b; }