#ad8623 Color
Color Codes | |
---|---|
Hex Code | #ad8623 |
RGB Code | rgb(173, 134, 35) |
HSL Code | hsl(43, 66%, 41%) |
#ad8623 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(173, 134, 35); }
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(43, 66%, 41%); }
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 #ad8623
RGB Code | Hex Code | Preview |
---|---|---|
rgb(173, 134, 35, 10%) | #ad86231a | |
rgb(173, 134, 35, 20%) | #ad862333 | |
rgb(173, 134, 35, 40%) | #ad86234C | |
rgb(173, 134, 35, 60%) | #ad862399 | |
rgb(173, 134, 35, 80%) | #ad8623CC | |
rgb(173, 134, 35, 100%) | #ad8623FF |
Saturated and desaturated colors of #ad8623
HSL Code | Preview |
---|---|
hsl(43, 10%, 41%) | |
hsl(43, 20%, 41%) | |
hsl(43, 40%, 41%) | |
hsl(43, 60%, 41%) | |
hsl(43, 80%, 41%) | |
hsl(43, 100%, 41%) |
#ad8623 Color Usage In CSS
body { color: #ad8623; } p { color: rgb(173, 134, 35); } header { border-bottom:1px solid #ad8623; }