#64123e Color
Color Codes | |
---|---|
Hex Code | #64123e |
RGB Code | rgb(100, 18, 62) |
HSL Code | hsl(328, 69%, 23%) |
#64123e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 18, 62); }
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(328, 69%, 23%); }
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 #64123e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 18, 62, 10%) | #64123e1a | |
rgb(100, 18, 62, 20%) | #64123e33 | |
rgb(100, 18, 62, 40%) | #64123e4C | |
rgb(100, 18, 62, 60%) | #64123e99 | |
rgb(100, 18, 62, 80%) | #64123eCC | |
rgb(100, 18, 62, 100%) | #64123eFF |
Saturated and desaturated colors of #64123e
HSL Code | Preview |
---|---|
hsl(328, 10%, 23%) | |
hsl(328, 20%, 23%) | |
hsl(328, 40%, 23%) | |
hsl(328, 60%, 23%) | |
hsl(328, 80%, 23%) | |
hsl(328, 100%, 23%) |
#64123e Color Usage In CSS
body { color: #64123e; } p { color: rgb(100, 18, 62); } header { border-bottom:1px solid #64123e; }