#749f93 Color
Color Codes | |
---|---|
Hex Code | #749f93 |
RGB Code | rgb(116, 159, 147) |
HSL Code | hsl(163, 18%, 54%) |
#749f93 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 159, 147); }
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(163, 18%, 54%); }
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 #749f93
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 159, 147, 10%) | #749f931a | |
rgb(116, 159, 147, 20%) | #749f9333 | |
rgb(116, 159, 147, 40%) | #749f934C | |
rgb(116, 159, 147, 60%) | #749f9399 | |
rgb(116, 159, 147, 80%) | #749f93CC | |
rgb(116, 159, 147, 100%) | #749f93FF |
Saturated and desaturated colors of #749f93
HSL Code | Preview |
---|---|
hsl(163, 10%, 54%) | |
hsl(163, 20%, 54%) | |
hsl(163, 40%, 54%) | |
hsl(163, 60%, 54%) | |
hsl(163, 80%, 54%) | |
hsl(163, 100%, 54%) |
#749f93 Color Usage In CSS
body { color: #749f93; } p { color: rgb(116, 159, 147); } header { border-bottom:1px solid #749f93; }