#386708 Color
Color Codes | |
---|---|
Hex Code | #386708 |
RGB Code | rgb(56, 103, 08) |
HSL Code | hsl(90, 86%, 22%) |
#386708 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 103, 08); }
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(90, 86%, 22%); }
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 #386708
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 103, 08, 10%) | #3867081a | |
rgb(56, 103, 08, 20%) | #38670833 | |
rgb(56, 103, 08, 40%) | #3867084C | |
rgb(56, 103, 08, 60%) | #38670899 | |
rgb(56, 103, 08, 80%) | #386708CC | |
rgb(56, 103, 08, 100%) | #386708FF |
Saturated and desaturated colors of #386708
HSL Code | Preview |
---|---|
hsl(90, 10%, 22%) | |
hsl(90, 20%, 22%) | |
hsl(90, 40%, 22%) | |
hsl(90, 60%, 22%) | |
hsl(90, 80%, 22%) | |
hsl(90, 100%, 22%) |
#386708 Color Usage In CSS
body { color: #386708; } p { color: rgb(56, 103, 08); } header { border-bottom:1px solid #386708; }