#fb8394 Color
Color Codes | |
---|---|
Hex Code | #fb8394 |
RGB Code | rgb(251, 131, 148) |
HSL Code | hsl(352, 94%, 75%) |
#fb8394 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 131, 148); }
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(352, 94%, 75%); }
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 #fb8394
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 131, 148, 10%) | #fb83941a | |
rgb(251, 131, 148, 20%) | #fb839433 | |
rgb(251, 131, 148, 40%) | #fb83944C | |
rgb(251, 131, 148, 60%) | #fb839499 | |
rgb(251, 131, 148, 80%) | #fb8394CC | |
rgb(251, 131, 148, 100%) | #fb8394FF |
Saturated and desaturated colors of #fb8394
HSL Code | Preview |
---|---|
hsl(352, 10%, 75%) | |
hsl(352, 20%, 75%) | |
hsl(352, 40%, 75%) | |
hsl(352, 60%, 75%) | |
hsl(352, 80%, 75%) | |
hsl(352, 100%, 75%) |
#fb8394 Color Usage In CSS
body { color: #fb8394; } p { color: rgb(251, 131, 148); } header { border-bottom:1px solid #fb8394; }