#069783 Color
Color Codes | |
---|---|
Hex Code | #069783 |
RGB Code | rgb(06, 151, 131) |
HSL Code | hsl(172, 92%, 31%) |
#069783 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 151, 131); }
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(172, 92%, 31%); }
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 #069783
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 151, 131, 10%) | #0697831a | |
rgb(06, 151, 131, 20%) | #06978333 | |
rgb(06, 151, 131, 40%) | #0697834C | |
rgb(06, 151, 131, 60%) | #06978399 | |
rgb(06, 151, 131, 80%) | #069783CC | |
rgb(06, 151, 131, 100%) | #069783FF |
Saturated and desaturated colors of #069783
HSL Code | Preview |
---|---|
hsl(172, 10%, 31%) | |
hsl(172, 20%, 31%) | |
hsl(172, 40%, 31%) | |
hsl(172, 60%, 31%) | |
hsl(172, 80%, 31%) | |
hsl(172, 100%, 31%) |
#069783 Color Usage In CSS
body { color: #069783; } p { color: rgb(06, 151, 131); } header { border-bottom:1px solid #069783; }