#e5a25d Color
Color Codes | |
---|---|
Hex Code | #e5a25d |
RGB Code | rgb(229, 162, 93) |
HSL Code | hsl(30, 72%, 63%) |
#e5a25d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 162, 93); }
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(30, 72%, 63%); }
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 #e5a25d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 162, 93, 10%) | #e5a25d1a | |
rgb(229, 162, 93, 20%) | #e5a25d33 | |
rgb(229, 162, 93, 40%) | #e5a25d4C | |
rgb(229, 162, 93, 60%) | #e5a25d99 | |
rgb(229, 162, 93, 80%) | #e5a25dCC | |
rgb(229, 162, 93, 100%) | #e5a25dFF |
Saturated and desaturated colors of #e5a25d
HSL Code | Preview |
---|---|
hsl(30, 10%, 63%) | |
hsl(30, 20%, 63%) | |
hsl(30, 40%, 63%) | |
hsl(30, 60%, 63%) | |
hsl(30, 80%, 63%) | |
hsl(30, 100%, 63%) |
#e5a25d Color Usage In CSS
body { color: #e5a25d; } p { color: rgb(229, 162, 93); } header { border-bottom:1px solid #e5a25d; }