#403d24 Color
Color Codes | |
---|---|
Hex Code | #403d24 |
RGB Code | rgb(64, 61, 36) |
HSL Code | hsl(54, 28%, 20%) |
#403d24 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 61, 36); }
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(54, 28%, 20%); }
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 #403d24
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 61, 36, 10%) | #403d241a | |
rgb(64, 61, 36, 20%) | #403d2433 | |
rgb(64, 61, 36, 40%) | #403d244C | |
rgb(64, 61, 36, 60%) | #403d2499 | |
rgb(64, 61, 36, 80%) | #403d24CC | |
rgb(64, 61, 36, 100%) | #403d24FF |
Saturated and desaturated colors of #403d24
HSL Code | Preview |
---|---|
hsl(54, 10%, 20%) | |
hsl(54, 20%, 20%) | |
hsl(54, 40%, 20%) | |
hsl(54, 60%, 20%) | |
hsl(54, 80%, 20%) | |
hsl(54, 100%, 20%) |
#403d24 Color Usage In CSS
body { color: #403d24; } p { color: rgb(64, 61, 36); } header { border-bottom:1px solid #403d24; }