#d27c79 Color
Color Codes | |
---|---|
Hex Code | #d27c79 |
RGB Code | rgb(210, 124, 121) |
HSL Code | hsl(2, 50%, 65%) |
#d27c79 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(210, 124, 121); }
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(2, 50%, 65%); }
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 #d27c79
RGB Code | Hex Code | Preview |
---|---|---|
rgb(210, 124, 121, 10%) | #d27c791a | |
rgb(210, 124, 121, 20%) | #d27c7933 | |
rgb(210, 124, 121, 40%) | #d27c794C | |
rgb(210, 124, 121, 60%) | #d27c7999 | |
rgb(210, 124, 121, 80%) | #d27c79CC | |
rgb(210, 124, 121, 100%) | #d27c79FF |
Saturated and desaturated colors of #d27c79
HSL Code | Preview |
---|---|
hsl(2, 10%, 65%) | |
hsl(2, 20%, 65%) | |
hsl(2, 40%, 65%) | |
hsl(2, 60%, 65%) | |
hsl(2, 80%, 65%) | |
hsl(2, 100%, 65%) |
#d27c79 Color Usage In CSS
body { color: #d27c79; } p { color: rgb(210, 124, 121); } header { border-bottom:1px solid #d27c79; }