#f599ba Color
Color Codes | |
---|---|
Hex Code | #f599ba |
RGB Code | rgb(245, 153, 186) |
HSL Code | hsl(338, 82%, 78%) |
#f599ba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 153, 186); }
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(338, 82%, 78%); }
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 #f599ba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 153, 186, 10%) | #f599ba1a | |
rgb(245, 153, 186, 20%) | #f599ba33 | |
rgb(245, 153, 186, 40%) | #f599ba4C | |
rgb(245, 153, 186, 60%) | #f599ba99 | |
rgb(245, 153, 186, 80%) | #f599baCC | |
rgb(245, 153, 186, 100%) | #f599baFF |
Saturated and desaturated colors of #f599ba
HSL Code | Preview |
---|---|
hsl(338, 10%, 78%) | |
hsl(338, 20%, 78%) | |
hsl(338, 40%, 78%) | |
hsl(338, 60%, 78%) | |
hsl(338, 80%, 78%) | |
hsl(338, 100%, 78%) |
#f599ba Color Usage In CSS
body { color: #f599ba; } p { color: rgb(245, 153, 186); } header { border-bottom:1px solid #f599ba; }