#215606 Color
Color Codes | |
---|---|
Hex Code | #215606 |
RGB Code | rgb(33, 86, 06) |
HSL Code | hsl(100, 87%, 18%) |
#215606 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(33, 86, 06); }
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, 87%, 18%); }
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 #215606
RGB Code | Hex Code | Preview |
---|---|---|
rgb(33, 86, 06, 10%) | #2156061a | |
rgb(33, 86, 06, 20%) | #21560633 | |
rgb(33, 86, 06, 40%) | #2156064C | |
rgb(33, 86, 06, 60%) | #21560699 | |
rgb(33, 86, 06, 80%) | #215606CC | |
rgb(33, 86, 06, 100%) | #215606FF |
Saturated and desaturated colors of #215606
HSL Code | Preview |
---|---|
hsl(100, 10%, 18%) | |
hsl(100, 20%, 18%) | |
hsl(100, 40%, 18%) | |
hsl(100, 60%, 18%) | |
hsl(100, 80%, 18%) | |
hsl(100, 100%, 18%) |
#215606 Color Usage In CSS
body { color: #215606; } p { color: rgb(33, 86, 06); } header { border-bottom:1px solid #215606; }