#079166 Color
Color Codes | |
---|---|
Hex Code | #079166 |
RGB Code | rgb(07, 145, 102) |
HSL Code | hsl(161, 91%, 30%) |
#079166 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 145, 102); }
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(161, 91%, 30%); }
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 #079166
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 145, 102, 10%) | #0791661a | |
rgb(07, 145, 102, 20%) | #07916633 | |
rgb(07, 145, 102, 40%) | #0791664C | |
rgb(07, 145, 102, 60%) | #07916699 | |
rgb(07, 145, 102, 80%) | #079166CC | |
rgb(07, 145, 102, 100%) | #079166FF |
Saturated and desaturated colors of #079166
HSL Code | Preview |
---|---|
hsl(161, 10%, 30%) | |
hsl(161, 20%, 30%) | |
hsl(161, 40%, 30%) | |
hsl(161, 60%, 30%) | |
hsl(161, 80%, 30%) | |
hsl(161, 100%, 30%) |
#079166 Color Usage In CSS
body { color: #079166; } p { color: rgb(07, 145, 102); } header { border-bottom:1px solid #079166; }