#e6aa3a Color
Color Codes | |
---|---|
Hex Code | #e6aa3a |
RGB Code | rgb(230, 170, 58) |
HSL Code | hsl(39, 77%, 56%) |
#e6aa3a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 170, 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(39, 77%, 56%); }
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 #e6aa3a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 170, 58, 10%) | #e6aa3a1a | |
rgb(230, 170, 58, 20%) | #e6aa3a33 | |
rgb(230, 170, 58, 40%) | #e6aa3a4C | |
rgb(230, 170, 58, 60%) | #e6aa3a99 | |
rgb(230, 170, 58, 80%) | #e6aa3aCC | |
rgb(230, 170, 58, 100%) | #e6aa3aFF |
Saturated and desaturated colors of #e6aa3a
HSL Code | Preview |
---|---|
hsl(39, 10%, 56%) | |
hsl(39, 20%, 56%) | |
hsl(39, 40%, 56%) | |
hsl(39, 60%, 56%) | |
hsl(39, 80%, 56%) | |
hsl(39, 100%, 56%) |
#e6aa3a Color Usage In CSS
body { color: #e6aa3a; } p { color: rgb(230, 170, 58); } header { border-bottom:1px solid #e6aa3a; }