#73a588 Color
Color Codes | |
---|---|
Hex Code | #73a588 |
RGB Code | rgb(115, 165, 136) |
HSL Code | hsl(145, 22%, 55%) |
#73a588 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 165, 136); }
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(145, 22%, 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 #73a588
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 165, 136, 10%) | #73a5881a | |
rgb(115, 165, 136, 20%) | #73a58833 | |
rgb(115, 165, 136, 40%) | #73a5884C | |
rgb(115, 165, 136, 60%) | #73a58899 | |
rgb(115, 165, 136, 80%) | #73a588CC | |
rgb(115, 165, 136, 100%) | #73a588FF |
Saturated and desaturated colors of #73a588
HSL Code | Preview |
---|---|
hsl(145, 10%, 55%) | |
hsl(145, 20%, 55%) | |
hsl(145, 40%, 55%) | |
hsl(145, 60%, 55%) | |
hsl(145, 80%, 55%) | |
hsl(145, 100%, 55%) |
#73a588 Color Usage In CSS
body { color: #73a588; } p { color: rgb(115, 165, 136); } header { border-bottom:1px solid #73a588; }