#74403d Color
Color Codes | |
---|---|
Hex Code | #74403d |
RGB Code | rgb(116, 64, 61) |
HSL Code | hsl(3, 31%, 35%) |
#74403d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 64, 61); }
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(3, 31%, 35%); }
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 #74403d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 64, 61, 10%) | #74403d1a | |
rgb(116, 64, 61, 20%) | #74403d33 | |
rgb(116, 64, 61, 40%) | #74403d4C | |
rgb(116, 64, 61, 60%) | #74403d99 | |
rgb(116, 64, 61, 80%) | #74403dCC | |
rgb(116, 64, 61, 100%) | #74403dFF |
Saturated and desaturated colors of #74403d
HSL Code | Preview |
---|---|
hsl(3, 10%, 35%) | |
hsl(3, 20%, 35%) | |
hsl(3, 40%, 35%) | |
hsl(3, 60%, 35%) | |
hsl(3, 80%, 35%) | |
hsl(3, 100%, 35%) |
#74403d Color Usage In CSS
body { color: #74403d; } p { color: rgb(116, 64, 61); } header { border-bottom:1px solid #74403d; }