#13956c Color
Color Codes | |
---|---|
Hex Code | #13956c |
RGB Code | rgb(19, 149, 108) |
HSL Code | hsl(161, 77%, 33%) |
#13956c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(19, 149, 108); }
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(161, 77%, 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 #13956c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(19, 149, 108, 10%) | #13956c1a | |
rgb(19, 149, 108, 20%) | #13956c33 | |
rgb(19, 149, 108, 40%) | #13956c4C | |
rgb(19, 149, 108, 60%) | #13956c99 | |
rgb(19, 149, 108, 80%) | #13956cCC | |
rgb(19, 149, 108, 100%) | #13956cFF |
Saturated and desaturated colors of #13956c
HSL Code | Preview |
---|---|
hsl(161, 10%, 33%) | |
hsl(161, 20%, 33%) | |
hsl(161, 40%, 33%) | |
hsl(161, 60%, 33%) | |
hsl(161, 80%, 33%) | |
hsl(161, 100%, 33%) |
#13956c Color Usage In CSS
body { color: #13956c; } p { color: rgb(19, 149, 108); } header { border-bottom:1px solid #13956c; }