#d05354 Color
Color Codes | |
---|---|
Hex Code | #d05354 |
RGB Code | rgb(208, 83, 84) |
HSL Code | hsl(360, 57%, 57%) |
#d05354 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 83, 84); }
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(360, 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 #d05354
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 83, 84, 10%) | #d053541a | |
rgb(208, 83, 84, 20%) | #d0535433 | |
rgb(208, 83, 84, 40%) | #d053544C | |
rgb(208, 83, 84, 60%) | #d0535499 | |
rgb(208, 83, 84, 80%) | #d05354CC | |
rgb(208, 83, 84, 100%) | #d05354FF |
Saturated and desaturated colors of #d05354
HSL Code | Preview |
---|---|
hsl(360, 10%, 57%) | |
hsl(360, 20%, 57%) | |
hsl(360, 40%, 57%) | |
hsl(360, 60%, 57%) | |
hsl(360, 80%, 57%) | |
hsl(360, 100%, 57%) |
#d05354 Color Usage In CSS
body { color: #d05354; } p { color: rgb(208, 83, 84); } header { border-bottom:1px solid #d05354; }