#d7036f Color
Color Codes | |
---|---|
Hex Code | #d7036f |
RGB Code | rgb(215, 03, 111) |
HSL Code | hsl(329, 97%, 43%) |
#d7036f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 03, 111); }
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(329, 97%, 43%); }
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 #d7036f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 03, 111, 10%) | #d7036f1a | |
rgb(215, 03, 111, 20%) | #d7036f33 | |
rgb(215, 03, 111, 40%) | #d7036f4C | |
rgb(215, 03, 111, 60%) | #d7036f99 | |
rgb(215, 03, 111, 80%) | #d7036fCC | |
rgb(215, 03, 111, 100%) | #d7036fFF |
Saturated and desaturated colors of #d7036f
HSL Code | Preview |
---|---|
hsl(329, 10%, 43%) | |
hsl(329, 20%, 43%) | |
hsl(329, 40%, 43%) | |
hsl(329, 60%, 43%) | |
hsl(329, 80%, 43%) | |
hsl(329, 100%, 43%) |
#d7036f Color Usage In CSS
body { color: #d7036f; } p { color: rgb(215, 03, 111); } header { border-bottom:1px solid #d7036f; }