#d27d4f Color
Color Codes | |
---|---|
Hex Code | #d27d4f |
RGB Code | rgb(210, 125, 79) |
HSL Code | hsl(21, 59%, 57%) |
#d27d4f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(210, 125, 79); }
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(21, 59%, 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 #d27d4f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(210, 125, 79, 10%) | #d27d4f1a | |
rgb(210, 125, 79, 20%) | #d27d4f33 | |
rgb(210, 125, 79, 40%) | #d27d4f4C | |
rgb(210, 125, 79, 60%) | #d27d4f99 | |
rgb(210, 125, 79, 80%) | #d27d4fCC | |
rgb(210, 125, 79, 100%) | #d27d4fFF |
Saturated and desaturated colors of #d27d4f
HSL Code | Preview |
---|---|
hsl(21, 10%, 57%) | |
hsl(21, 20%, 57%) | |
hsl(21, 40%, 57%) | |
hsl(21, 60%, 57%) | |
hsl(21, 80%, 57%) | |
hsl(21, 100%, 57%) |
#d27d4f Color Usage In CSS
body { color: #d27d4f; } p { color: rgb(210, 125, 79); } header { border-bottom:1px solid #d27d4f; }