#096d6b Color
Color Codes | |
---|---|
Hex Code | #096d6b |
RGB Code | rgb(09, 109, 107) |
HSL Code | hsl(179, 85%, 23%) |
#096d6b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 109, 107); }
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(179, 85%, 23%); }
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 #096d6b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 109, 107, 10%) | #096d6b1a | |
rgb(09, 109, 107, 20%) | #096d6b33 | |
rgb(09, 109, 107, 40%) | #096d6b4C | |
rgb(09, 109, 107, 60%) | #096d6b99 | |
rgb(09, 109, 107, 80%) | #096d6bCC | |
rgb(09, 109, 107, 100%) | #096d6bFF |
Saturated and desaturated colors of #096d6b
HSL Code | Preview |
---|---|
hsl(179, 10%, 23%) | |
hsl(179, 20%, 23%) | |
hsl(179, 40%, 23%) | |
hsl(179, 60%, 23%) | |
hsl(179, 80%, 23%) | |
hsl(179, 100%, 23%) |
#096d6b Color Usage In CSS
body { color: #096d6b; } p { color: rgb(09, 109, 107); } header { border-bottom:1px solid #096d6b; }