#085504 Color
Color Codes | |
---|---|
Hex Code | #085504 |
RGB Code | rgb(08, 85, 04) |
HSL Code | hsl(117, 91%, 17%) |
#085504 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 85, 04); }
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(117, 91%, 17%); }
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 #085504
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 85, 04, 10%) | #0855041a | |
rgb(08, 85, 04, 20%) | #08550433 | |
rgb(08, 85, 04, 40%) | #0855044C | |
rgb(08, 85, 04, 60%) | #08550499 | |
rgb(08, 85, 04, 80%) | #085504CC | |
rgb(08, 85, 04, 100%) | #085504FF |
Saturated and desaturated colors of #085504
HSL Code | Preview |
---|---|
hsl(117, 10%, 17%) | |
hsl(117, 20%, 17%) | |
hsl(117, 40%, 17%) | |
hsl(117, 60%, 17%) | |
hsl(117, 80%, 17%) | |
hsl(117, 100%, 17%) |
#085504 Color Usage In CSS
body { color: #085504; } p { color: rgb(08, 85, 04); } header { border-bottom:1px solid #085504; }