#604745 Color
Color Codes | |
---|---|
Hex Code | #604745 |
RGB Code | rgb(96, 71, 69) |
HSL Code | hsl(4, 16%, 32%) |
#604745 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(96, 71, 69); }
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(4, 16%, 32%); }
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 #604745
RGB Code | Hex Code | Preview |
---|---|---|
rgb(96, 71, 69, 10%) | #6047451a | |
rgb(96, 71, 69, 20%) | #60474533 | |
rgb(96, 71, 69, 40%) | #6047454C | |
rgb(96, 71, 69, 60%) | #60474599 | |
rgb(96, 71, 69, 80%) | #604745CC | |
rgb(96, 71, 69, 100%) | #604745FF |
Saturated and desaturated colors of #604745
HSL Code | Preview |
---|---|
hsl(4, 10%, 32%) | |
hsl(4, 20%, 32%) | |
hsl(4, 40%, 32%) | |
hsl(4, 60%, 32%) | |
hsl(4, 80%, 32%) | |
hsl(4, 100%, 32%) |
#604745 Color Usage In CSS
body { color: #604745; } p { color: rgb(96, 71, 69); } header { border-bottom:1px solid #604745; }