#332e20 Color
Color Codes | |
---|---|
Hex Code | #332e20 |
RGB Code | rgb(51, 46, 32) |
HSL Code | hsl(44, 23%, 16%) |
#332e20 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(51, 46, 32); }
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(44, 23%, 16%); }
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 #332e20
RGB Code | Hex Code | Preview |
---|---|---|
rgb(51, 46, 32, 10%) | #332e201a | |
rgb(51, 46, 32, 20%) | #332e2033 | |
rgb(51, 46, 32, 40%) | #332e204C | |
rgb(51, 46, 32, 60%) | #332e2099 | |
rgb(51, 46, 32, 80%) | #332e20CC | |
rgb(51, 46, 32, 100%) | #332e20FF |
Saturated and desaturated colors of #332e20
HSL Code | Preview |
---|---|
hsl(44, 10%, 16%) | |
hsl(44, 20%, 16%) | |
hsl(44, 40%, 16%) | |
hsl(44, 60%, 16%) | |
hsl(44, 80%, 16%) | |
hsl(44, 100%, 16%) |
#332e20 Color Usage In CSS
body { color: #332e20; } p { color: rgb(51, 46, 32); } header { border-bottom:1px solid #332e20; }