#f67778 Color
Color Codes | |
---|---|
Hex Code | #f67778 |
RGB Code | rgb(246, 119, 120) |
HSL Code | hsl(360, 88%, 72%) |
#f67778 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 119, 120); }
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(360, 88%, 72%); }
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 #f67778
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 119, 120, 10%) | #f677781a | |
rgb(246, 119, 120, 20%) | #f6777833 | |
rgb(246, 119, 120, 40%) | #f677784C | |
rgb(246, 119, 120, 60%) | #f6777899 | |
rgb(246, 119, 120, 80%) | #f67778CC | |
rgb(246, 119, 120, 100%) | #f67778FF |
Saturated and desaturated colors of #f67778
HSL Code | Preview |
---|---|
hsl(360, 10%, 72%) | |
hsl(360, 20%, 72%) | |
hsl(360, 40%, 72%) | |
hsl(360, 60%, 72%) | |
hsl(360, 80%, 72%) | |
hsl(360, 100%, 72%) |
#f67778 Color Usage In CSS
body { color: #f67778; } p { color: rgb(246, 119, 120); } header { border-bottom:1px solid #f67778; }