#a38802 Color
Color Codes | |
---|---|
Hex Code | #a38802 |
RGB Code | rgb(163, 136, 02) |
HSL Code | hsl(50, 98%, 32%) |
#a38802 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(163, 136, 02); }
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(50, 98%, 32%); }
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 #a38802
RGB Code | Hex Code | Preview |
---|---|---|
rgb(163, 136, 02, 10%) | #a388021a | |
rgb(163, 136, 02, 20%) | #a3880233 | |
rgb(163, 136, 02, 40%) | #a388024C | |
rgb(163, 136, 02, 60%) | #a3880299 | |
rgb(163, 136, 02, 80%) | #a38802CC | |
rgb(163, 136, 02, 100%) | #a38802FF |
Saturated and desaturated colors of #a38802
HSL Code | Preview |
---|---|
hsl(50, 10%, 32%) | |
hsl(50, 20%, 32%) | |
hsl(50, 40%, 32%) | |
hsl(50, 60%, 32%) | |
hsl(50, 80%, 32%) | |
hsl(50, 100%, 32%) |
#a38802 Color Usage In CSS
body { color: #a38802; } p { color: rgb(163, 136, 02); } header { border-bottom:1px solid #a38802; }