#119d8e Color
Color Codes | |
---|---|
Hex Code | #119d8e |
RGB Code | rgb(17, 157, 142) |
HSL Code | hsl(174, 80%, 34%) |
#119d8e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 157, 142); }
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(174, 80%, 34%); }
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 #119d8e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 157, 142, 10%) | #119d8e1a | |
rgb(17, 157, 142, 20%) | #119d8e33 | |
rgb(17, 157, 142, 40%) | #119d8e4C | |
rgb(17, 157, 142, 60%) | #119d8e99 | |
rgb(17, 157, 142, 80%) | #119d8eCC | |
rgb(17, 157, 142, 100%) | #119d8eFF |
Saturated and desaturated colors of #119d8e
HSL Code | Preview |
---|---|
hsl(174, 10%, 34%) | |
hsl(174, 20%, 34%) | |
hsl(174, 40%, 34%) | |
hsl(174, 60%, 34%) | |
hsl(174, 80%, 34%) | |
hsl(174, 100%, 34%) |
#119d8e Color Usage In CSS
body { color: #119d8e; } p { color: rgb(17, 157, 142); } header { border-bottom:1px solid #119d8e; }