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