#bff0ae Color
Color Codes | |
---|---|
Hex Code | #bff0ae |
RGB Code | rgb(191, 240, 174) |
HSL Code | hsl(105, 69%, 81%) |
#bff0ae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 240, 174); }
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(105, 69%, 81%); }
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 #bff0ae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 240, 174, 10%) | #bff0ae1a | |
rgb(191, 240, 174, 20%) | #bff0ae33 | |
rgb(191, 240, 174, 40%) | #bff0ae4C | |
rgb(191, 240, 174, 60%) | #bff0ae99 | |
rgb(191, 240, 174, 80%) | #bff0aeCC | |
rgb(191, 240, 174, 100%) | #bff0aeFF |
Saturated and desaturated colors of #bff0ae
HSL Code | Preview |
---|---|
hsl(105, 10%, 81%) | |
hsl(105, 20%, 81%) | |
hsl(105, 40%, 81%) | |
hsl(105, 60%, 81%) | |
hsl(105, 80%, 81%) | |
hsl(105, 100%, 81%) |
#bff0ae Color Usage In CSS
body { color: #bff0ae; } p { color: rgb(191, 240, 174); } header { border-bottom:1px solid #bff0ae; }