#325d1d Color
Color Codes | |
---|---|
Hex Code | #325d1d |
RGB Code | rgb(50, 93, 29) |
HSL Code | hsl(100, 52%, 24%) |
#325d1d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(50, 93, 29); }
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(100, 52%, 24%); }
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 #325d1d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(50, 93, 29, 10%) | #325d1d1a | |
rgb(50, 93, 29, 20%) | #325d1d33 | |
rgb(50, 93, 29, 40%) | #325d1d4C | |
rgb(50, 93, 29, 60%) | #325d1d99 | |
rgb(50, 93, 29, 80%) | #325d1dCC | |
rgb(50, 93, 29, 100%) | #325d1dFF |
Saturated and desaturated colors of #325d1d
HSL Code | Preview |
---|---|
hsl(100, 10%, 24%) | |
hsl(100, 20%, 24%) | |
hsl(100, 40%, 24%) | |
hsl(100, 60%, 24%) | |
hsl(100, 80%, 24%) | |
hsl(100, 100%, 24%) |
#325d1d Color Usage In CSS
body { color: #325d1d; } p { color: rgb(50, 93, 29); } header { border-bottom:1px solid #325d1d; }