#601c2b Color
Color Codes | |
---|---|
Hex Code | #601c2b |
RGB Code | rgb(96, 28, 43) |
HSL Code | hsl(347, 55%, 24%) |
#601c2b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(96, 28, 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(347, 55%, 24%); }
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 #601c2b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(96, 28, 43, 10%) | #601c2b1a | |
rgb(96, 28, 43, 20%) | #601c2b33 | |
rgb(96, 28, 43, 40%) | #601c2b4C | |
rgb(96, 28, 43, 60%) | #601c2b99 | |
rgb(96, 28, 43, 80%) | #601c2bCC | |
rgb(96, 28, 43, 100%) | #601c2bFF |
Saturated and desaturated colors of #601c2b
HSL Code | Preview |
---|---|
hsl(347, 10%, 24%) | |
hsl(347, 20%, 24%) | |
hsl(347, 40%, 24%) | |
hsl(347, 60%, 24%) | |
hsl(347, 80%, 24%) | |
hsl(347, 100%, 24%) |
#601c2b Color Usage In CSS
body { color: #601c2b; } p { color: rgb(96, 28, 43); } header { border-bottom:1px solid #601c2b; }