#5daa99 Color
Color Codes | |
---|---|
Hex Code | #5daa99 |
RGB Code | rgb(93, 170, 153) |
HSL Code | hsl(167, 31%, 52%) |
#5daa99 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(93, 170, 153); }
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(167, 31%, 52%); }
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 #5daa99
RGB Code | Hex Code | Preview |
---|---|---|
rgb(93, 170, 153, 10%) | #5daa991a | |
rgb(93, 170, 153, 20%) | #5daa9933 | |
rgb(93, 170, 153, 40%) | #5daa994C | |
rgb(93, 170, 153, 60%) | #5daa9999 | |
rgb(93, 170, 153, 80%) | #5daa99CC | |
rgb(93, 170, 153, 100%) | #5daa99FF |
Saturated and desaturated colors of #5daa99
HSL Code | Preview |
---|---|
hsl(167, 10%, 52%) | |
hsl(167, 20%, 52%) | |
hsl(167, 40%, 52%) | |
hsl(167, 60%, 52%) | |
hsl(167, 80%, 52%) | |
hsl(167, 100%, 52%) |
#5daa99 Color Usage In CSS
body { color: #5daa99; } p { color: rgb(93, 170, 153); } header { border-bottom:1px solid #5daa99; }