#eb5469 Color
Color Codes | |
---|---|
Hex Code | #eb5469 |
RGB Code | rgb(235, 84, 105) |
HSL Code | hsl(352, 79%, 63%) |
#eb5469 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 84, 105); }
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(352, 79%, 63%); }
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 #eb5469
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 84, 105, 10%) | #eb54691a | |
rgb(235, 84, 105, 20%) | #eb546933 | |
rgb(235, 84, 105, 40%) | #eb54694C | |
rgb(235, 84, 105, 60%) | #eb546999 | |
rgb(235, 84, 105, 80%) | #eb5469CC | |
rgb(235, 84, 105, 100%) | #eb5469FF |
Saturated and desaturated colors of #eb5469
HSL Code | Preview |
---|---|
hsl(352, 10%, 63%) | |
hsl(352, 20%, 63%) | |
hsl(352, 40%, 63%) | |
hsl(352, 60%, 63%) | |
hsl(352, 80%, 63%) | |
hsl(352, 100%, 63%) |
#eb5469 Color Usage In CSS
body { color: #eb5469; } p { color: rgb(235, 84, 105); } header { border-bottom:1px solid #eb5469; }