#e69231 Color
Color Codes | |
---|---|
Hex Code | #e69231 |
RGB Code | rgb(230, 146, 49) |
HSL Code | hsl(32, 78%, 55%) |
#e69231 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 146, 49); }
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(32, 78%, 55%); }
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 #e69231
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 146, 49, 10%) | #e692311a | |
rgb(230, 146, 49, 20%) | #e6923133 | |
rgb(230, 146, 49, 40%) | #e692314C | |
rgb(230, 146, 49, 60%) | #e6923199 | |
rgb(230, 146, 49, 80%) | #e69231CC | |
rgb(230, 146, 49, 100%) | #e69231FF |
Saturated and desaturated colors of #e69231
HSL Code | Preview |
---|---|
hsl(32, 10%, 55%) | |
hsl(32, 20%, 55%) | |
hsl(32, 40%, 55%) | |
hsl(32, 60%, 55%) | |
hsl(32, 80%, 55%) | |
hsl(32, 100%, 55%) |
#e69231 Color Usage In CSS
body { color: #e69231; } p { color: rgb(230, 146, 49); } header { border-bottom:1px solid #e69231; }