#e49167 Color
Color Codes | |
---|---|
Hex Code | #e49167 |
RGB Code | rgb(228, 145, 103) |
HSL Code | hsl(20, 70%, 65%) |
#e49167 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 145, 103); }
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(20, 70%, 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 #e49167
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 145, 103, 10%) | #e491671a | |
rgb(228, 145, 103, 20%) | #e4916733 | |
rgb(228, 145, 103, 40%) | #e491674C | |
rgb(228, 145, 103, 60%) | #e4916799 | |
rgb(228, 145, 103, 80%) | #e49167CC | |
rgb(228, 145, 103, 100%) | #e49167FF |
Saturated and desaturated colors of #e49167
HSL Code | Preview |
---|---|
hsl(20, 10%, 65%) | |
hsl(20, 20%, 65%) | |
hsl(20, 40%, 65%) | |
hsl(20, 60%, 65%) | |
hsl(20, 80%, 65%) | |
hsl(20, 100%, 65%) |
#e49167 Color Usage In CSS
body { color: #e49167; } p { color: rgb(228, 145, 103); } header { border-bottom:1px solid #e49167; }