#41632b Color
Color Codes | |
---|---|
Hex Code | #41632b |
RGB Code | rgb(65, 99, 43) |
HSL Code | hsl(96, 39%, 28%) |
#41632b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(65, 99, 43); }
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(96, 39%, 28%); }
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 #41632b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(65, 99, 43, 10%) | #41632b1a | |
rgb(65, 99, 43, 20%) | #41632b33 | |
rgb(65, 99, 43, 40%) | #41632b4C | |
rgb(65, 99, 43, 60%) | #41632b99 | |
rgb(65, 99, 43, 80%) | #41632bCC | |
rgb(65, 99, 43, 100%) | #41632bFF |
Saturated and desaturated colors of #41632b
HSL Code | Preview |
---|---|
hsl(96, 10%, 28%) | |
hsl(96, 20%, 28%) | |
hsl(96, 40%, 28%) | |
hsl(96, 60%, 28%) | |
hsl(96, 80%, 28%) | |
hsl(96, 100%, 28%) |
#41632b Color Usage In CSS
body { color: #41632b; } p { color: rgb(65, 99, 43); } header { border-bottom:1px solid #41632b; }