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