#3e5441 Color
Color Codes | |
---|---|
Hex Code | #3e5441 |
RGB Code | rgb(62, 84, 65) |
HSL Code | hsl(128, 15%, 29%) |
#3e5441 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 84, 65); }
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(128, 15%, 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 #3e5441
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 84, 65, 10%) | #3e54411a | |
rgb(62, 84, 65, 20%) | #3e544133 | |
rgb(62, 84, 65, 40%) | #3e54414C | |
rgb(62, 84, 65, 60%) | #3e544199 | |
rgb(62, 84, 65, 80%) | #3e5441CC | |
rgb(62, 84, 65, 100%) | #3e5441FF |
Saturated and desaturated colors of #3e5441
HSL Code | Preview |
---|---|
hsl(128, 10%, 29%) | |
hsl(128, 20%, 29%) | |
hsl(128, 40%, 29%) | |
hsl(128, 60%, 29%) | |
hsl(128, 80%, 29%) | |
hsl(128, 100%, 29%) |
#3e5441 Color Usage In CSS
body { color: #3e5441; } p { color: rgb(62, 84, 65); } header { border-bottom:1px solid #3e5441; }