#799c9e Color
Color Codes | |
---|---|
Hex Code | #799c9e |
RGB Code | rgb(121, 156, 158) |
HSL Code | hsl(183, 16%, 55%) |
#799c9e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(121, 156, 158); }
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(183, 16%, 55%); }
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 #799c9e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(121, 156, 158, 10%) | #799c9e1a | |
rgb(121, 156, 158, 20%) | #799c9e33 | |
rgb(121, 156, 158, 40%) | #799c9e4C | |
rgb(121, 156, 158, 60%) | #799c9e99 | |
rgb(121, 156, 158, 80%) | #799c9eCC | |
rgb(121, 156, 158, 100%) | #799c9eFF |
Saturated and desaturated colors of #799c9e
HSL Code | Preview |
---|---|
hsl(183, 10%, 55%) | |
hsl(183, 20%, 55%) | |
hsl(183, 40%, 55%) | |
hsl(183, 60%, 55%) | |
hsl(183, 80%, 55%) | |
hsl(183, 100%, 55%) |
#799c9e Color Usage In CSS
body { color: #799c9e; } p { color: rgb(121, 156, 158); } header { border-bottom:1px solid #799c9e; }