#f0b9c8 Color
Color Codes | |
---|---|
Hex Code | #f0b9c8 |
RGB Code | rgb(240, 185, 200) |
HSL Code | hsl(344, 65%, 83%) |
#f0b9c8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(240, 185, 200); }
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(344, 65%, 83%); }
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 #f0b9c8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(240, 185, 200, 10%) | #f0b9c81a | |
rgb(240, 185, 200, 20%) | #f0b9c833 | |
rgb(240, 185, 200, 40%) | #f0b9c84C | |
rgb(240, 185, 200, 60%) | #f0b9c899 | |
rgb(240, 185, 200, 80%) | #f0b9c8CC | |
rgb(240, 185, 200, 100%) | #f0b9c8FF |
Saturated and desaturated colors of #f0b9c8
HSL Code | Preview |
---|---|
hsl(344, 10%, 83%) | |
hsl(344, 20%, 83%) | |
hsl(344, 40%, 83%) | |
hsl(344, 60%, 83%) | |
hsl(344, 80%, 83%) | |
hsl(344, 100%, 83%) |
#f0b9c8 Color Usage In CSS
body { color: #f0b9c8; } p { color: rgb(240, 185, 200); } header { border-bottom:1px solid #f0b9c8; }