#bc919c Color
Color Codes | |
---|---|
Hex Code | #bc919c |
RGB Code | rgb(188, 145, 156) |
HSL Code | hsl(345, 24%, 65%) |
#bc919c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 145, 156); }
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(345, 24%, 65%); }
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 #bc919c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 145, 156, 10%) | #bc919c1a | |
rgb(188, 145, 156, 20%) | #bc919c33 | |
rgb(188, 145, 156, 40%) | #bc919c4C | |
rgb(188, 145, 156, 60%) | #bc919c99 | |
rgb(188, 145, 156, 80%) | #bc919cCC | |
rgb(188, 145, 156, 100%) | #bc919cFF |
Saturated and desaturated colors of #bc919c
HSL Code | Preview |
---|---|
hsl(345, 10%, 65%) | |
hsl(345, 20%, 65%) | |
hsl(345, 40%, 65%) | |
hsl(345, 60%, 65%) | |
hsl(345, 80%, 65%) | |
hsl(345, 100%, 65%) |
#bc919c Color Usage In CSS
body { color: #bc919c; } p { color: rgb(188, 145, 156); } header { border-bottom:1px solid #bc919c; }