#f26690 Color
Color Codes | |
---|---|
Hex Code | #f26690 |
RGB Code | rgb(242, 102, 144) |
HSL Code | hsl(342, 84%, 67%) |
#f26690 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(242, 102, 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, 84%, 67%); }
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 #f26690
RGB Code | Hex Code | Preview |
---|---|---|
rgb(242, 102, 144, 10%) | #f266901a | |
rgb(242, 102, 144, 20%) | #f2669033 | |
rgb(242, 102, 144, 40%) | #f266904C | |
rgb(242, 102, 144, 60%) | #f2669099 | |
rgb(242, 102, 144, 80%) | #f26690CC | |
rgb(242, 102, 144, 100%) | #f26690FF |
Saturated and desaturated colors of #f26690
HSL Code | Preview |
---|---|
hsl(342, 10%, 67%) | |
hsl(342, 20%, 67%) | |
hsl(342, 40%, 67%) | |
hsl(342, 60%, 67%) | |
hsl(342, 80%, 67%) | |
hsl(342, 100%, 67%) |
#f26690 Color Usage In CSS
body { color: #f26690; } p { color: rgb(242, 102, 144); } header { border-bottom:1px solid #f26690; }