#bbf9af Color
Color Codes | |
---|---|
Hex Code | #bbf9af |
RGB Code | rgb(187, 249, 175) |
HSL Code | hsl(110, 86%, 83%) |
#bbf9af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 249, 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(110, 86%, 83%); }
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 #bbf9af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 249, 175, 10%) | #bbf9af1a | |
rgb(187, 249, 175, 20%) | #bbf9af33 | |
rgb(187, 249, 175, 40%) | #bbf9af4C | |
rgb(187, 249, 175, 60%) | #bbf9af99 | |
rgb(187, 249, 175, 80%) | #bbf9afCC | |
rgb(187, 249, 175, 100%) | #bbf9afFF |
Saturated and desaturated colors of #bbf9af
HSL Code | Preview |
---|---|
hsl(110, 10%, 83%) | |
hsl(110, 20%, 83%) | |
hsl(110, 40%, 83%) | |
hsl(110, 60%, 83%) | |
hsl(110, 80%, 83%) | |
hsl(110, 100%, 83%) |
#bbf9af Color Usage In CSS
body { color: #bbf9af; } p { color: rgb(187, 249, 175); } header { border-bottom:1px solid #bbf9af; }