#bc9693 Color
Color Codes | |
---|---|
Hex Code | #bc9693 |
RGB Code | rgb(188, 150, 147) |
HSL Code | hsl(4, 23%, 66%) |
#bc9693 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 150, 147); }
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(4, 23%, 66%); }
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 #bc9693
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 150, 147, 10%) | #bc96931a | |
rgb(188, 150, 147, 20%) | #bc969333 | |
rgb(188, 150, 147, 40%) | #bc96934C | |
rgb(188, 150, 147, 60%) | #bc969399 | |
rgb(188, 150, 147, 80%) | #bc9693CC | |
rgb(188, 150, 147, 100%) | #bc9693FF |
Saturated and desaturated colors of #bc9693
HSL Code | Preview |
---|---|
hsl(4, 10%, 66%) | |
hsl(4, 20%, 66%) | |
hsl(4, 40%, 66%) | |
hsl(4, 60%, 66%) | |
hsl(4, 80%, 66%) | |
hsl(4, 100%, 66%) |
#bc9693 Color Usage In CSS
body { color: #bc9693; } p { color: rgb(188, 150, 147); } header { border-bottom:1px solid #bc9693; }