#f69597 Color
Color Codes | |
---|---|
Hex Code | #f69597 |
RGB Code | rgb(246, 149, 151) |
HSL Code | hsl(359, 84%, 77%) |
#f69597 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 149, 151); }
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(359, 84%, 77%); }
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 #f69597
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 149, 151, 10%) | #f695971a | |
rgb(246, 149, 151, 20%) | #f6959733 | |
rgb(246, 149, 151, 40%) | #f695974C | |
rgb(246, 149, 151, 60%) | #f6959799 | |
rgb(246, 149, 151, 80%) | #f69597CC | |
rgb(246, 149, 151, 100%) | #f69597FF |
Saturated and desaturated colors of #f69597
HSL Code | Preview |
---|---|
hsl(359, 10%, 77%) | |
hsl(359, 20%, 77%) | |
hsl(359, 40%, 77%) | |
hsl(359, 60%, 77%) | |
hsl(359, 80%, 77%) | |
hsl(359, 100%, 77%) |
#f69597 Color Usage In CSS
body { color: #f69597; } p { color: rgb(246, 149, 151); } header { border-bottom:1px solid #f69597; }