#d45395 Color
Color Codes | |
---|---|
Hex Code | #d45395 |
RGB Code | rgb(212, 83, 149) |
HSL Code | hsl(329, 60%, 58%) |
#d45395 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 83, 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(329, 60%, 58%); }
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 #d45395
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 83, 149, 10%) | #d453951a | |
rgb(212, 83, 149, 20%) | #d4539533 | |
rgb(212, 83, 149, 40%) | #d453954C | |
rgb(212, 83, 149, 60%) | #d4539599 | |
rgb(212, 83, 149, 80%) | #d45395CC | |
rgb(212, 83, 149, 100%) | #d45395FF |
Saturated and desaturated colors of #d45395
HSL Code | Preview |
---|---|
hsl(329, 10%, 58%) | |
hsl(329, 20%, 58%) | |
hsl(329, 40%, 58%) | |
hsl(329, 60%, 58%) | |
hsl(329, 80%, 58%) | |
hsl(329, 100%, 58%) |
#d45395 Color Usage In CSS
body { color: #d45395; } p { color: rgb(212, 83, 149); } header { border-bottom:1px solid #d45395; }