#e27982 Color
Color Codes | |
---|---|
Hex Code | #e27982 |
RGB Code | rgb(226, 121, 130) |
HSL Code | hsl(355, 64%, 68%) |
#e27982 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 121, 130); }
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(355, 64%, 68%); }
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 #e27982
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 121, 130, 10%) | #e279821a | |
rgb(226, 121, 130, 20%) | #e2798233 | |
rgb(226, 121, 130, 40%) | #e279824C | |
rgb(226, 121, 130, 60%) | #e2798299 | |
rgb(226, 121, 130, 80%) | #e27982CC | |
rgb(226, 121, 130, 100%) | #e27982FF |
Saturated and desaturated colors of #e27982
HSL Code | Preview |
---|---|
hsl(355, 10%, 68%) | |
hsl(355, 20%, 68%) | |
hsl(355, 40%, 68%) | |
hsl(355, 60%, 68%) | |
hsl(355, 80%, 68%) | |
hsl(355, 100%, 68%) |
#e27982 Color Usage In CSS
body { color: #e27982; } p { color: rgb(226, 121, 130); } header { border-bottom:1px solid #e27982; }