#d0369e Color
Color Codes | |
---|---|
Hex Code | #d0369e |
RGB Code | rgb(208, 54, 158) |
HSL Code | hsl(319, 62%, 51%) |
#d0369e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 54, 158); }
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(319, 62%, 51%); }
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 #d0369e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 54, 158, 10%) | #d0369e1a | |
rgb(208, 54, 158, 20%) | #d0369e33 | |
rgb(208, 54, 158, 40%) | #d0369e4C | |
rgb(208, 54, 158, 60%) | #d0369e99 | |
rgb(208, 54, 158, 80%) | #d0369eCC | |
rgb(208, 54, 158, 100%) | #d0369eFF |
Saturated and desaturated colors of #d0369e
HSL Code | Preview |
---|---|
hsl(319, 10%, 51%) | |
hsl(319, 20%, 51%) | |
hsl(319, 40%, 51%) | |
hsl(319, 60%, 51%) | |
hsl(319, 80%, 51%) | |
hsl(319, 100%, 51%) |
#d0369e Color Usage In CSS
body { color: #d0369e; } p { color: rgb(208, 54, 158); } header { border-bottom:1px solid #d0369e; }