#108e88 Color
Color Codes | |
---|---|
Hex Code | #108e88 |
RGB Code | rgb(16, 142, 136) |
HSL Code | hsl(177, 80%, 31%) |
#108e88 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(16, 142, 136); }
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(177, 80%, 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 #108e88
RGB Code | Hex Code | Preview |
---|---|---|
rgb(16, 142, 136, 10%) | #108e881a | |
rgb(16, 142, 136, 20%) | #108e8833 | |
rgb(16, 142, 136, 40%) | #108e884C | |
rgb(16, 142, 136, 60%) | #108e8899 | |
rgb(16, 142, 136, 80%) | #108e88CC | |
rgb(16, 142, 136, 100%) | #108e88FF |
Saturated and desaturated colors of #108e88
HSL Code | Preview |
---|---|
hsl(177, 10%, 31%) | |
hsl(177, 20%, 31%) | |
hsl(177, 40%, 31%) | |
hsl(177, 60%, 31%) | |
hsl(177, 80%, 31%) | |
hsl(177, 100%, 31%) |
#108e88 Color Usage In CSS
body { color: #108e88; } p { color: rgb(16, 142, 136); } header { border-bottom:1px solid #108e88; }