#fa1853 Color
Color Codes | |
---|---|
Hex Code | #fa1853 |
RGB Code | rgb(250, 24, 83) |
HSL Code | hsl(344, 96%, 54%) |
#fa1853 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 24, 83); }
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(344, 96%, 54%); }
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 #fa1853
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 24, 83, 10%) | #fa18531a | |
rgb(250, 24, 83, 20%) | #fa185333 | |
rgb(250, 24, 83, 40%) | #fa18534C | |
rgb(250, 24, 83, 60%) | #fa185399 | |
rgb(250, 24, 83, 80%) | #fa1853CC | |
rgb(250, 24, 83, 100%) | #fa1853FF |
Saturated and desaturated colors of #fa1853
HSL Code | Preview |
---|---|
hsl(344, 10%, 54%) | |
hsl(344, 20%, 54%) | |
hsl(344, 40%, 54%) | |
hsl(344, 60%, 54%) | |
hsl(344, 80%, 54%) | |
hsl(344, 100%, 54%) |
#fa1853 Color Usage In CSS
body { color: #fa1853; } p { color: rgb(250, 24, 83); } header { border-bottom:1px solid #fa1853; }