#fa5ebe Color
Color Codes | |
---|---|
Hex Code | #fa5ebe |
RGB Code | rgb(250, 94, 190) |
HSL Code | hsl(323, 94%, 67%) |
#fa5ebe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 94, 190); }
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(323, 94%, 67%); }
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 #fa5ebe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 94, 190, 10%) | #fa5ebe1a | |
rgb(250, 94, 190, 20%) | #fa5ebe33 | |
rgb(250, 94, 190, 40%) | #fa5ebe4C | |
rgb(250, 94, 190, 60%) | #fa5ebe99 | |
rgb(250, 94, 190, 80%) | #fa5ebeCC | |
rgb(250, 94, 190, 100%) | #fa5ebeFF |
Saturated and desaturated colors of #fa5ebe
HSL Code | Preview |
---|---|
hsl(323, 10%, 67%) | |
hsl(323, 20%, 67%) | |
hsl(323, 40%, 67%) | |
hsl(323, 60%, 67%) | |
hsl(323, 80%, 67%) | |
hsl(323, 100%, 67%) |
#fa5ebe Color Usage In CSS
body { color: #fa5ebe; } p { color: rgb(250, 94, 190); } header { border-bottom:1px solid #fa5ebe; }