#ef6484 Color
Color Codes | |
---|---|
Hex Code | #ef6484 |
RGB Code | rgb(239, 100, 132) |
HSL Code | hsl(346, 81%, 66%) |
#ef6484 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(239, 100, 132); }
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(346, 81%, 66%); }
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 #ef6484
RGB Code | Hex Code | Preview |
---|---|---|
rgb(239, 100, 132, 10%) | #ef64841a | |
rgb(239, 100, 132, 20%) | #ef648433 | |
rgb(239, 100, 132, 40%) | #ef64844C | |
rgb(239, 100, 132, 60%) | #ef648499 | |
rgb(239, 100, 132, 80%) | #ef6484CC | |
rgb(239, 100, 132, 100%) | #ef6484FF |
Saturated and desaturated colors of #ef6484
HSL Code | Preview |
---|---|
hsl(346, 10%, 66%) | |
hsl(346, 20%, 66%) | |
hsl(346, 40%, 66%) | |
hsl(346, 60%, 66%) | |
hsl(346, 80%, 66%) | |
hsl(346, 100%, 66%) |
#ef6484 Color Usage In CSS
body { color: #ef6484; } p { color: rgb(239, 100, 132); } header { border-bottom:1px solid #ef6484; }