#8a3709 Color
Color Codes | |
---|---|
Hex Code | #8a3709 |
RGB Code | rgb(138, 55, 09) |
HSL Code | hsl(21, 88%, 29%) |
#8a3709 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(138, 55, 09); }
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(21, 88%, 29%); }
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 #8a3709
RGB Code | Hex Code | Preview |
---|---|---|
rgb(138, 55, 09, 10%) | #8a37091a | |
rgb(138, 55, 09, 20%) | #8a370933 | |
rgb(138, 55, 09, 40%) | #8a37094C | |
rgb(138, 55, 09, 60%) | #8a370999 | |
rgb(138, 55, 09, 80%) | #8a3709CC | |
rgb(138, 55, 09, 100%) | #8a3709FF |
Saturated and desaturated colors of #8a3709
HSL Code | Preview |
---|---|
hsl(21, 10%, 29%) | |
hsl(21, 20%, 29%) | |
hsl(21, 40%, 29%) | |
hsl(21, 60%, 29%) | |
hsl(21, 80%, 29%) | |
hsl(21, 100%, 29%) |
#8a3709 Color Usage In CSS
body { color: #8a3709; } p { color: rgb(138, 55, 09); } header { border-bottom:1px solid #8a3709; }