#530d09 Color
Color Codes | |
---|---|
Hex Code | #530d09 |
RGB Code | rgb(83, 13, 09) |
HSL Code | hsl(3, 80%, 18%) |
#530d09 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(83, 13, 09); }
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(3, 80%, 18%); }
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 #530d09
RGB Code | Hex Code | Preview |
---|---|---|
rgb(83, 13, 09, 10%) | #530d091a | |
rgb(83, 13, 09, 20%) | #530d0933 | |
rgb(83, 13, 09, 40%) | #530d094C | |
rgb(83, 13, 09, 60%) | #530d0999 | |
rgb(83, 13, 09, 80%) | #530d09CC | |
rgb(83, 13, 09, 100%) | #530d09FF |
Saturated and desaturated colors of #530d09
HSL Code | Preview |
---|---|
hsl(3, 10%, 18%) | |
hsl(3, 20%, 18%) | |
hsl(3, 40%, 18%) | |
hsl(3, 60%, 18%) | |
hsl(3, 80%, 18%) | |
hsl(3, 100%, 18%) |
#530d09 Color Usage In CSS
body { color: #530d09; } p { color: rgb(83, 13, 09); } header { border-bottom:1px solid #530d09; }