#b6d9a5 Color
Color Codes | |
---|---|
Hex Code | #b6d9a5 |
RGB Code | rgb(182, 217, 165) |
HSL Code | hsl(100, 41%, 75%) |
#b6d9a5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 217, 165); }
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(100, 41%, 75%); }
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 #b6d9a5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 217, 165, 10%) | #b6d9a51a | |
rgb(182, 217, 165, 20%) | #b6d9a533 | |
rgb(182, 217, 165, 40%) | #b6d9a54C | |
rgb(182, 217, 165, 60%) | #b6d9a599 | |
rgb(182, 217, 165, 80%) | #b6d9a5CC | |
rgb(182, 217, 165, 100%) | #b6d9a5FF |
Saturated and desaturated colors of #b6d9a5
HSL Code | Preview |
---|---|
hsl(100, 10%, 75%) | |
hsl(100, 20%, 75%) | |
hsl(100, 40%, 75%) | |
hsl(100, 60%, 75%) | |
hsl(100, 80%, 75%) | |
hsl(100, 100%, 75%) |
#b6d9a5 Color Usage In CSS
body { color: #b6d9a5; } p { color: rgb(182, 217, 165); } header { border-bottom:1px solid #b6d9a5; }