#fb6290 Color
Color Codes | |
---|---|
Hex Code | #fb6290 |
RGB Code | rgb(251, 98, 144) |
HSL Code | hsl(342, 95%, 68%) |
#fb6290 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 98, 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(342, 95%, 68%); }
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 #fb6290
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 98, 144, 10%) | #fb62901a | |
rgb(251, 98, 144, 20%) | #fb629033 | |
rgb(251, 98, 144, 40%) | #fb62904C | |
rgb(251, 98, 144, 60%) | #fb629099 | |
rgb(251, 98, 144, 80%) | #fb6290CC | |
rgb(251, 98, 144, 100%) | #fb6290FF |
Saturated and desaturated colors of #fb6290
HSL Code | Preview |
---|---|
hsl(342, 10%, 68%) | |
hsl(342, 20%, 68%) | |
hsl(342, 40%, 68%) | |
hsl(342, 60%, 68%) | |
hsl(342, 80%, 68%) | |
hsl(342, 100%, 68%) |
#fb6290 Color Usage In CSS
body { color: #fb6290; } p { color: rgb(251, 98, 144); } header { border-bottom:1px solid #fb6290; }