#d00e95 Color
Color Codes | |
---|---|
Hex Code | #d00e95 |
RGB Code | rgb(208, 14, 149) |
HSL Code | hsl(318, 87%, 44%) |
#d00e95 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 14, 149); }
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(318, 87%, 44%); }
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 #d00e95
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 14, 149, 10%) | #d00e951a | |
rgb(208, 14, 149, 20%) | #d00e9533 | |
rgb(208, 14, 149, 40%) | #d00e954C | |
rgb(208, 14, 149, 60%) | #d00e9599 | |
rgb(208, 14, 149, 80%) | #d00e95CC | |
rgb(208, 14, 149, 100%) | #d00e95FF |
Saturated and desaturated colors of #d00e95
HSL Code | Preview |
---|---|
hsl(318, 10%, 44%) | |
hsl(318, 20%, 44%) | |
hsl(318, 40%, 44%) | |
hsl(318, 60%, 44%) | |
hsl(318, 80%, 44%) | |
hsl(318, 100%, 44%) |
#d00e95 Color Usage In CSS
body { color: #d00e95; } p { color: rgb(208, 14, 149); } header { border-bottom:1px solid #d00e95; }