#065109 Color
Color Codes | |
---|---|
Hex Code | #065109 |
RGB Code | rgb(06, 81, 09) |
HSL Code | hsl(122, 86%, 17%) |
#065109 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 81, 09); }
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(122, 86%, 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 #065109
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 81, 09, 10%) | #0651091a | |
rgb(06, 81, 09, 20%) | #06510933 | |
rgb(06, 81, 09, 40%) | #0651094C | |
rgb(06, 81, 09, 60%) | #06510999 | |
rgb(06, 81, 09, 80%) | #065109CC | |
rgb(06, 81, 09, 100%) | #065109FF |
Saturated and desaturated colors of #065109
HSL Code | Preview |
---|---|
hsl(122, 10%, 17%) | |
hsl(122, 20%, 17%) | |
hsl(122, 40%, 17%) | |
hsl(122, 60%, 17%) | |
hsl(122, 80%, 17%) | |
hsl(122, 100%, 17%) |
#065109 Color Usage In CSS
body { color: #065109; } p { color: rgb(06, 81, 09); } header { border-bottom:1px solid #065109; }