#bcd0a8 Color
Color Codes | |
---|---|
Hex Code | #bcd0a8 |
RGB Code | rgb(188, 208, 168) |
HSL Code | hsl(90, 30%, 74%) |
#bcd0a8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 208, 168); }
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(90, 30%, 74%); }
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 #bcd0a8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 208, 168, 10%) | #bcd0a81a | |
rgb(188, 208, 168, 20%) | #bcd0a833 | |
rgb(188, 208, 168, 40%) | #bcd0a84C | |
rgb(188, 208, 168, 60%) | #bcd0a899 | |
rgb(188, 208, 168, 80%) | #bcd0a8CC | |
rgb(188, 208, 168, 100%) | #bcd0a8FF |
Saturated and desaturated colors of #bcd0a8
HSL Code | Preview |
---|---|
hsl(90, 10%, 74%) | |
hsl(90, 20%, 74%) | |
hsl(90, 40%, 74%) | |
hsl(90, 60%, 74%) | |
hsl(90, 80%, 74%) | |
hsl(90, 100%, 74%) |
#bcd0a8 Color Usage In CSS
body { color: #bcd0a8; } p { color: rgb(188, 208, 168); } header { border-bottom:1px solid #bcd0a8; }