#01350d Color
Color Codes | |
---|---|
Hex Code | #01350d |
RGB Code | rgb(01, 53, 13) |
HSL Code | hsl(134, 96%, 11%) |
#01350d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 53, 13); }
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(134, 96%, 11%); }
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 #01350d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 53, 13, 10%) | #01350d1a | |
rgb(01, 53, 13, 20%) | #01350d33 | |
rgb(01, 53, 13, 40%) | #01350d4C | |
rgb(01, 53, 13, 60%) | #01350d99 | |
rgb(01, 53, 13, 80%) | #01350dCC | |
rgb(01, 53, 13, 100%) | #01350dFF |
Saturated and desaturated colors of #01350d
HSL Code | Preview |
---|---|
hsl(134, 10%, 11%) | |
hsl(134, 20%, 11%) | |
hsl(134, 40%, 11%) | |
hsl(134, 60%, 11%) | |
hsl(134, 80%, 11%) | |
hsl(134, 100%, 11%) |
#01350d Color Usage In CSS
body { color: #01350d; } p { color: rgb(01, 53, 13); } header { border-bottom:1px solid #01350d; }