#527806 Color
Color Codes | |
---|---|
Hex Code | #527806 |
RGB Code | rgb(82, 120, 06) |
HSL Code | hsl(80, 90%, 25%) |
#527806 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(82, 120, 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(80, 90%, 25%); }
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 #527806
RGB Code | Hex Code | Preview |
---|---|---|
rgb(82, 120, 06, 10%) | #5278061a | |
rgb(82, 120, 06, 20%) | #52780633 | |
rgb(82, 120, 06, 40%) | #5278064C | |
rgb(82, 120, 06, 60%) | #52780699 | |
rgb(82, 120, 06, 80%) | #527806CC | |
rgb(82, 120, 06, 100%) | #527806FF |
Saturated and desaturated colors of #527806
HSL Code | Preview |
---|---|
hsl(80, 10%, 25%) | |
hsl(80, 20%, 25%) | |
hsl(80, 40%, 25%) | |
hsl(80, 60%, 25%) | |
hsl(80, 80%, 25%) | |
hsl(80, 100%, 25%) |
#527806 Color Usage In CSS
body { color: #527806; } p { color: rgb(82, 120, 06); } header { border-bottom:1px solid #527806; }