#e7861b Color
Color Codes | |
---|---|
Hex Code | #e7861b |
RGB Code | rgb(231, 134, 27) |
HSL Code | hsl(31, 81%, 51%) |
#e7861b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 134, 27); }
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(31, 81%, 51%); }
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 #e7861b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 134, 27, 10%) | #e7861b1a | |
rgb(231, 134, 27, 20%) | #e7861b33 | |
rgb(231, 134, 27, 40%) | #e7861b4C | |
rgb(231, 134, 27, 60%) | #e7861b99 | |
rgb(231, 134, 27, 80%) | #e7861bCC | |
rgb(231, 134, 27, 100%) | #e7861bFF |
Saturated and desaturated colors of #e7861b
HSL Code | Preview |
---|---|
hsl(31, 10%, 51%) | |
hsl(31, 20%, 51%) | |
hsl(31, 40%, 51%) | |
hsl(31, 60%, 51%) | |
hsl(31, 80%, 51%) | |
hsl(31, 100%, 51%) |
#e7861b Color Usage In CSS
body { color: #e7861b; } p { color: rgb(231, 134, 27); } header { border-bottom:1px solid #e7861b; }