#1da88f Color
Color Codes | |
---|---|
Hex Code | #1da88f |
RGB Code | rgb(29, 168, 143) |
HSL Code | hsl(169, 71%, 39%) |
#1da88f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 168, 143); }
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(169, 71%, 39%); }
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 #1da88f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 168, 143, 10%) | #1da88f1a | |
rgb(29, 168, 143, 20%) | #1da88f33 | |
rgb(29, 168, 143, 40%) | #1da88f4C | |
rgb(29, 168, 143, 60%) | #1da88f99 | |
rgb(29, 168, 143, 80%) | #1da88fCC | |
rgb(29, 168, 143, 100%) | #1da88fFF |
Saturated and desaturated colors of #1da88f
HSL Code | Preview |
---|---|
hsl(169, 10%, 39%) | |
hsl(169, 20%, 39%) | |
hsl(169, 40%, 39%) | |
hsl(169, 60%, 39%) | |
hsl(169, 80%, 39%) | |
hsl(169, 100%, 39%) |
#1da88f Color Usage In CSS
body { color: #1da88f; } p { color: rgb(29, 168, 143); } header { border-bottom:1px solid #1da88f; }