#ff1598 Color
Color Codes | |
---|---|
Hex Code | #ff1598 |
RGB Code | rgb(255, 21, 152) |
HSL Code | hsl(326, 100%, 54%) |
#ff1598 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(255, 21, 152); }
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, 100%, 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 #ff1598
RGB Code | Hex Code | Preview |
---|---|---|
rgb(255, 21, 152, 10%) | #ff15981a | |
rgb(255, 21, 152, 20%) | #ff159833 | |
rgb(255, 21, 152, 40%) | #ff15984C | |
rgb(255, 21, 152, 60%) | #ff159899 | |
rgb(255, 21, 152, 80%) | #ff1598CC | |
rgb(255, 21, 152, 100%) | #ff1598FF |
Saturated and desaturated colors of #ff1598
HSL Code | Preview |
---|---|
hsl(326, 10%, 54%) | |
hsl(326, 20%, 54%) | |
hsl(326, 40%, 54%) | |
hsl(326, 60%, 54%) | |
hsl(326, 80%, 54%) | |
hsl(326, 100%, 54%) |
#ff1598 Color Usage In CSS
body { color: #ff1598; } p { color: rgb(255, 21, 152); } header { border-bottom:1px solid #ff1598; }