#11a39b Color
Color Codes | |
---|---|
Hex Code | #11a39b |
RGB Code | rgb(17, 163, 155) |
HSL Code | hsl(177, 81%, 35%) |
#11a39b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 163, 155); }
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, 81%, 35%); }
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 #11a39b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 163, 155, 10%) | #11a39b1a | |
rgb(17, 163, 155, 20%) | #11a39b33 | |
rgb(17, 163, 155, 40%) | #11a39b4C | |
rgb(17, 163, 155, 60%) | #11a39b99 | |
rgb(17, 163, 155, 80%) | #11a39bCC | |
rgb(17, 163, 155, 100%) | #11a39bFF |
Saturated and desaturated colors of #11a39b
HSL Code | Preview |
---|---|
hsl(177, 10%, 35%) | |
hsl(177, 20%, 35%) | |
hsl(177, 40%, 35%) | |
hsl(177, 60%, 35%) | |
hsl(177, 80%, 35%) | |
hsl(177, 100%, 35%) |
#11a39b Color Usage In CSS
body { color: #11a39b; } p { color: rgb(17, 163, 155); } header { border-bottom:1px solid #11a39b; }