#138797 Color
Color Codes | |
---|---|
Hex Code | #138797 |
RGB Code | rgb(19, 135, 151) |
HSL Code | hsl(187, 78%, 33%) |
#138797 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(19, 135, 151); }
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(187, 78%, 33%); }
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 #138797
RGB Code | Hex Code | Preview |
---|---|---|
rgb(19, 135, 151, 10%) | #1387971a | |
rgb(19, 135, 151, 20%) | #13879733 | |
rgb(19, 135, 151, 40%) | #1387974C | |
rgb(19, 135, 151, 60%) | #13879799 | |
rgb(19, 135, 151, 80%) | #138797CC | |
rgb(19, 135, 151, 100%) | #138797FF |
Saturated and desaturated colors of #138797
HSL Code | Preview |
---|---|
hsl(187, 10%, 33%) | |
hsl(187, 20%, 33%) | |
hsl(187, 40%, 33%) | |
hsl(187, 60%, 33%) | |
hsl(187, 80%, 33%) | |
hsl(187, 100%, 33%) |
#138797 Color Usage In CSS
body { color: #138797; } p { color: rgb(19, 135, 151); } header { border-bottom:1px solid #138797; }