#f16974 Color
Color Codes | |
---|---|
Hex Code | #f16974 |
RGB Code | rgb(241, 105, 116) |
HSL Code | hsl(355, 83%, 68%) |
#f16974 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 105, 116); }
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(355, 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 #f16974
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 105, 116, 10%) | #f169741a | |
rgb(241, 105, 116, 20%) | #f1697433 | |
rgb(241, 105, 116, 40%) | #f169744C | |
rgb(241, 105, 116, 60%) | #f1697499 | |
rgb(241, 105, 116, 80%) | #f16974CC | |
rgb(241, 105, 116, 100%) | #f16974FF |
Saturated and desaturated colors of #f16974
HSL Code | Preview |
---|---|
hsl(355, 10%, 68%) | |
hsl(355, 20%, 68%) | |
hsl(355, 40%, 68%) | |
hsl(355, 60%, 68%) | |
hsl(355, 80%, 68%) | |
hsl(355, 100%, 68%) |
#f16974 Color Usage In CSS
body { color: #f16974; } p { color: rgb(241, 105, 116); } header { border-bottom:1px solid #f16974; }