#d05363 Color
Color Codes | |
---|---|
Hex Code | #d05363 |
RGB Code | rgb(208, 83, 99) |
HSL Code | hsl(352, 57%, 57%) |
#d05363 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 83, 99); }
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(352, 57%, 57%); }
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 #d05363
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 83, 99, 10%) | #d053631a | |
rgb(208, 83, 99, 20%) | #d0536333 | |
rgb(208, 83, 99, 40%) | #d053634C | |
rgb(208, 83, 99, 60%) | #d0536399 | |
rgb(208, 83, 99, 80%) | #d05363CC | |
rgb(208, 83, 99, 100%) | #d05363FF |
Saturated and desaturated colors of #d05363
HSL Code | Preview |
---|---|
hsl(352, 10%, 57%) | |
hsl(352, 20%, 57%) | |
hsl(352, 40%, 57%) | |
hsl(352, 60%, 57%) | |
hsl(352, 80%, 57%) | |
hsl(352, 100%, 57%) |
#d05363 Color Usage In CSS
body { color: #d05363; } p { color: rgb(208, 83, 99); } header { border-bottom:1px solid #d05363; }