#e6bd7f Color
Color Codes | |
---|---|
Hex Code | #e6bd7f |
RGB Code | rgb(230, 189, 127) |
HSL Code | hsl(36, 67%, 70%) |
#e6bd7f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 189, 127); }
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(36, 67%, 70%); }
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 #e6bd7f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 189, 127, 10%) | #e6bd7f1a | |
rgb(230, 189, 127, 20%) | #e6bd7f33 | |
rgb(230, 189, 127, 40%) | #e6bd7f4C | |
rgb(230, 189, 127, 60%) | #e6bd7f99 | |
rgb(230, 189, 127, 80%) | #e6bd7fCC | |
rgb(230, 189, 127, 100%) | #e6bd7fFF |
Saturated and desaturated colors of #e6bd7f
HSL Code | Preview |
---|---|
hsl(36, 10%, 70%) | |
hsl(36, 20%, 70%) | |
hsl(36, 40%, 70%) | |
hsl(36, 60%, 70%) | |
hsl(36, 80%, 70%) | |
hsl(36, 100%, 70%) |
#e6bd7f Color Usage In CSS
body { color: #e6bd7f; } p { color: rgb(230, 189, 127); } header { border-bottom:1px solid #e6bd7f; }