#1ec6a9 Color
Color Codes | |
---|---|
Hex Code | #1ec6a9 |
RGB Code | rgb(30, 198, 169) |
HSL Code | hsl(170, 74%, 45%) |
#1ec6a9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(30, 198, 169); }
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(170, 74%, 45%); }
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 #1ec6a9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(30, 198, 169, 10%) | #1ec6a91a | |
rgb(30, 198, 169, 20%) | #1ec6a933 | |
rgb(30, 198, 169, 40%) | #1ec6a94C | |
rgb(30, 198, 169, 60%) | #1ec6a999 | |
rgb(30, 198, 169, 80%) | #1ec6a9CC | |
rgb(30, 198, 169, 100%) | #1ec6a9FF |
Saturated and desaturated colors of #1ec6a9
HSL Code | Preview |
---|---|
hsl(170, 10%, 45%) | |
hsl(170, 20%, 45%) | |
hsl(170, 40%, 45%) | |
hsl(170, 60%, 45%) | |
hsl(170, 80%, 45%) | |
hsl(170, 100%, 45%) |
#1ec6a9 Color Usage In CSS
body { color: #1ec6a9; } p { color: rgb(30, 198, 169); } header { border-bottom:1px solid #1ec6a9; }