#bcdeb3 Color
Color Codes | |
---|---|
Hex Code | #bcdeb3 |
RGB Code | rgb(188, 222, 179) |
HSL Code | hsl(107, 39%, 79%) |
#bcdeb3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 222, 179); }
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(107, 39%, 79%); }
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 #bcdeb3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 222, 179, 10%) | #bcdeb31a | |
rgb(188, 222, 179, 20%) | #bcdeb333 | |
rgb(188, 222, 179, 40%) | #bcdeb34C | |
rgb(188, 222, 179, 60%) | #bcdeb399 | |
rgb(188, 222, 179, 80%) | #bcdeb3CC | |
rgb(188, 222, 179, 100%) | #bcdeb3FF |
Saturated and desaturated colors of #bcdeb3
HSL Code | Preview |
---|---|
hsl(107, 10%, 79%) | |
hsl(107, 20%, 79%) | |
hsl(107, 40%, 79%) | |
hsl(107, 60%, 79%) | |
hsl(107, 80%, 79%) | |
hsl(107, 100%, 79%) |
#bcdeb3 Color Usage In CSS
body { color: #bcdeb3; } p { color: rgb(188, 222, 179); } header { border-bottom:1px solid #bcdeb3; }