#bcd3af Color
Color Codes | |
---|---|
Hex Code | #bcd3af |
RGB Code | rgb(188, 211, 175) |
HSL Code | hsl(98, 29%, 76%) |
#bcd3af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 211, 175); }
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(98, 29%, 76%); }
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 #bcd3af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 211, 175, 10%) | #bcd3af1a | |
rgb(188, 211, 175, 20%) | #bcd3af33 | |
rgb(188, 211, 175, 40%) | #bcd3af4C | |
rgb(188, 211, 175, 60%) | #bcd3af99 | |
rgb(188, 211, 175, 80%) | #bcd3afCC | |
rgb(188, 211, 175, 100%) | #bcd3afFF |
Saturated and desaturated colors of #bcd3af
HSL Code | Preview |
---|---|
hsl(98, 10%, 76%) | |
hsl(98, 20%, 76%) | |
hsl(98, 40%, 76%) | |
hsl(98, 60%, 76%) | |
hsl(98, 80%, 76%) | |
hsl(98, 100%, 76%) |
#bcd3af Color Usage In CSS
body { color: #bcd3af; } p { color: rgb(188, 211, 175); } header { border-bottom:1px solid #bcd3af; }