#f65a89 Color
Color Codes | |
---|---|
Hex Code | #f65a89 |
RGB Code | rgb(246, 90, 137) |
HSL Code | hsl(342, 90%, 66%) |
#f65a89 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 90, 137); }
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, 90%, 66%); }
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 #f65a89
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 90, 137, 10%) | #f65a891a | |
rgb(246, 90, 137, 20%) | #f65a8933 | |
rgb(246, 90, 137, 40%) | #f65a894C | |
rgb(246, 90, 137, 60%) | #f65a8999 | |
rgb(246, 90, 137, 80%) | #f65a89CC | |
rgb(246, 90, 137, 100%) | #f65a89FF |
Saturated and desaturated colors of #f65a89
HSL Code | Preview |
---|---|
hsl(342, 10%, 66%) | |
hsl(342, 20%, 66%) | |
hsl(342, 40%, 66%) | |
hsl(342, 60%, 66%) | |
hsl(342, 80%, 66%) | |
hsl(342, 100%, 66%) |
#f65a89 Color Usage In CSS
body { color: #f65a89; } p { color: rgb(246, 90, 137); } header { border-bottom:1px solid #f65a89; }