#61003c Color
Color Codes | |
---|---|
Hex Code | #61003c |
RGB Code | rgb(97, 00, 60) |
HSL Code | hsl(323, 100%, 19%) |
#61003c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 00, 60); }
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(323, 100%, 19%); }
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 #61003c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 00, 60, 10%) | #61003c1a | |
rgb(97, 00, 60, 20%) | #61003c33 | |
rgb(97, 00, 60, 40%) | #61003c4C | |
rgb(97, 00, 60, 60%) | #61003c99 | |
rgb(97, 00, 60, 80%) | #61003cCC | |
rgb(97, 00, 60, 100%) | #61003cFF |
Saturated and desaturated colors of #61003c
HSL Code | Preview |
---|---|
hsl(323, 10%, 19%) | |
hsl(323, 20%, 19%) | |
hsl(323, 40%, 19%) | |
hsl(323, 60%, 19%) | |
hsl(323, 80%, 19%) | |
hsl(323, 100%, 19%) |
#61003c Color Usage In CSS
body { color: #61003c; } p { color: rgb(97, 00, 60); } header { border-bottom:1px solid #61003c; }