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