#471603 Color
Color Codes | |
---|---|
Hex Code | #471603 |
RGB Code | rgb(71, 22, 03) |
HSL Code | hsl(17, 92%, 15%) |
#471603 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(71, 22, 03); }
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(17, 92%, 15%); }
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 #471603
RGB Code | Hex Code | Preview |
---|---|---|
rgb(71, 22, 03, 10%) | #4716031a | |
rgb(71, 22, 03, 20%) | #47160333 | |
rgb(71, 22, 03, 40%) | #4716034C | |
rgb(71, 22, 03, 60%) | #47160399 | |
rgb(71, 22, 03, 80%) | #471603CC | |
rgb(71, 22, 03, 100%) | #471603FF |
Saturated and desaturated colors of #471603
HSL Code | Preview |
---|---|
hsl(17, 10%, 15%) | |
hsl(17, 20%, 15%) | |
hsl(17, 40%, 15%) | |
hsl(17, 60%, 15%) | |
hsl(17, 80%, 15%) | |
hsl(17, 100%, 15%) |
#471603 Color Usage In CSS
body { color: #471603; } p { color: rgb(71, 22, 03); } header { border-bottom:1px solid #471603; }