#fa1396 Color
Color Codes | |
---|---|
Hex Code | #fa1396 |
RGB Code | rgb(250, 19, 150) |
HSL Code | hsl(326, 96%, 53%) |
#fa1396 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 19, 150); }
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(326, 96%, 53%); }
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 #fa1396
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 19, 150, 10%) | #fa13961a | |
rgb(250, 19, 150, 20%) | #fa139633 | |
rgb(250, 19, 150, 40%) | #fa13964C | |
rgb(250, 19, 150, 60%) | #fa139699 | |
rgb(250, 19, 150, 80%) | #fa1396CC | |
rgb(250, 19, 150, 100%) | #fa1396FF |
Saturated and desaturated colors of #fa1396
HSL Code | Preview |
---|---|
hsl(326, 10%, 53%) | |
hsl(326, 20%, 53%) | |
hsl(326, 40%, 53%) | |
hsl(326, 60%, 53%) | |
hsl(326, 80%, 53%) | |
hsl(326, 100%, 53%) |
#fa1396 Color Usage In CSS
body { color: #fa1396; } p { color: rgb(250, 19, 150); } header { border-bottom:1px solid #fa1396; }