#39989b Color
Color Codes | |
---|---|
Hex Code | #39989b |
RGB Code | rgb(57, 152, 155) |
HSL Code | hsl(182, 46%, 42%) |
#39989b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(57, 152, 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(182, 46%, 42%); }
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 #39989b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(57, 152, 155, 10%) | #39989b1a | |
rgb(57, 152, 155, 20%) | #39989b33 | |
rgb(57, 152, 155, 40%) | #39989b4C | |
rgb(57, 152, 155, 60%) | #39989b99 | |
rgb(57, 152, 155, 80%) | #39989bCC | |
rgb(57, 152, 155, 100%) | #39989bFF |
Saturated and desaturated colors of #39989b
HSL Code | Preview |
---|---|
hsl(182, 10%, 42%) | |
hsl(182, 20%, 42%) | |
hsl(182, 40%, 42%) | |
hsl(182, 60%, 42%) | |
hsl(182, 80%, 42%) | |
hsl(182, 100%, 42%) |
#39989b Color Usage In CSS
body { color: #39989b; } p { color: rgb(57, 152, 155); } header { border-bottom:1px solid #39989b; }