#3f192e Color
Color Codes | |
---|---|
Hex Code | #3f192e |
RGB Code | rgb(63, 25, 46) |
HSL Code | hsl(327, 43%, 17%) |
#3f192e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 25, 46); }
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(327, 43%, 17%); }
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 #3f192e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 25, 46, 10%) | #3f192e1a | |
rgb(63, 25, 46, 20%) | #3f192e33 | |
rgb(63, 25, 46, 40%) | #3f192e4C | |
rgb(63, 25, 46, 60%) | #3f192e99 | |
rgb(63, 25, 46, 80%) | #3f192eCC | |
rgb(63, 25, 46, 100%) | #3f192eFF |
Saturated and desaturated colors of #3f192e
HSL Code | Preview |
---|---|
hsl(327, 10%, 17%) | |
hsl(327, 20%, 17%) | |
hsl(327, 40%, 17%) | |
hsl(327, 60%, 17%) | |
hsl(327, 80%, 17%) | |
hsl(327, 100%, 17%) |
#3f192e Color Usage In CSS
body { color: #3f192e; } p { color: rgb(63, 25, 46); } header { border-bottom:1px solid #3f192e; }