#fb3990 Color
Color Codes | |
---|---|
Hex Code | #fb3990 |
RGB Code | rgb(251, 57, 144) |
HSL Code | hsl(333, 96%, 60%) |
#fb3990 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 57, 144); }
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(333, 96%, 60%); }
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 #fb3990
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 57, 144, 10%) | #fb39901a | |
rgb(251, 57, 144, 20%) | #fb399033 | |
rgb(251, 57, 144, 40%) | #fb39904C | |
rgb(251, 57, 144, 60%) | #fb399099 | |
rgb(251, 57, 144, 80%) | #fb3990CC | |
rgb(251, 57, 144, 100%) | #fb3990FF |
Saturated and desaturated colors of #fb3990
HSL Code | Preview |
---|---|
hsl(333, 10%, 60%) | |
hsl(333, 20%, 60%) | |
hsl(333, 40%, 60%) | |
hsl(333, 60%, 60%) | |
hsl(333, 80%, 60%) | |
hsl(333, 100%, 60%) |
#fb3990 Color Usage In CSS
body { color: #fb3990; } p { color: rgb(251, 57, 144); } header { border-bottom:1px solid #fb3990; }