#e79b3a Color
Color Codes | |
---|---|
Hex Code | #e79b3a |
RGB Code | rgb(231, 155, 58) |
HSL Code | hsl(34, 78%, 57%) |
#e79b3a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 155, 58); }
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(34, 78%, 57%); }
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 #e79b3a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 155, 58, 10%) | #e79b3a1a | |
rgb(231, 155, 58, 20%) | #e79b3a33 | |
rgb(231, 155, 58, 40%) | #e79b3a4C | |
rgb(231, 155, 58, 60%) | #e79b3a99 | |
rgb(231, 155, 58, 80%) | #e79b3aCC | |
rgb(231, 155, 58, 100%) | #e79b3aFF |
Saturated and desaturated colors of #e79b3a
HSL Code | Preview |
---|---|
hsl(34, 10%, 57%) | |
hsl(34, 20%, 57%) | |
hsl(34, 40%, 57%) | |
hsl(34, 60%, 57%) | |
hsl(34, 80%, 57%) | |
hsl(34, 100%, 57%) |
#e79b3a Color Usage In CSS
body { color: #e79b3a; } p { color: rgb(231, 155, 58); } header { border-bottom:1px solid #e79b3a; }