#f16989 Color
Color Codes | |
---|---|
Hex Code | #f16989 |
RGB Code | rgb(241, 105, 137) |
HSL Code | hsl(346, 83%, 68%) |
#f16989 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 105, 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(346, 83%, 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 #f16989
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 105, 137, 10%) | #f169891a | |
rgb(241, 105, 137, 20%) | #f1698933 | |
rgb(241, 105, 137, 40%) | #f169894C | |
rgb(241, 105, 137, 60%) | #f1698999 | |
rgb(241, 105, 137, 80%) | #f16989CC | |
rgb(241, 105, 137, 100%) | #f16989FF |
Saturated and desaturated colors of #f16989
HSL Code | Preview |
---|---|
hsl(346, 10%, 68%) | |
hsl(346, 20%, 68%) | |
hsl(346, 40%, 68%) | |
hsl(346, 60%, 68%) | |
hsl(346, 80%, 68%) | |
hsl(346, 100%, 68%) |
#f16989 Color Usage In CSS
body { color: #f16989; } p { color: rgb(241, 105, 137); } header { border-bottom:1px solid #f16989; }