#529518 Color
Color Codes | |
---|---|
Hex Code | #529518 |
RGB Code | rgb(82, 149, 24) |
HSL Code | hsl(92, 72%, 34%) |
#529518 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(82, 149, 24); }
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(92, 72%, 34%); }
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 #529518
RGB Code | Hex Code | Preview |
---|---|---|
rgb(82, 149, 24, 10%) | #5295181a | |
rgb(82, 149, 24, 20%) | #52951833 | |
rgb(82, 149, 24, 40%) | #5295184C | |
rgb(82, 149, 24, 60%) | #52951899 | |
rgb(82, 149, 24, 80%) | #529518CC | |
rgb(82, 149, 24, 100%) | #529518FF |
Saturated and desaturated colors of #529518
HSL Code | Preview |
---|---|
hsl(92, 10%, 34%) | |
hsl(92, 20%, 34%) | |
hsl(92, 40%, 34%) | |
hsl(92, 60%, 34%) | |
hsl(92, 80%, 34%) | |
hsl(92, 100%, 34%) |
#529518 Color Usage In CSS
body { color: #529518; } p { color: rgb(82, 149, 24); } header { border-bottom:1px solid #529518; }