#1dc09f Color
Color Codes | |
---|---|
Hex Code | #1dc09f |
RGB Code | rgb(29, 192, 159) |
HSL Code | hsl(168, 74%, 43%) |
#1dc09f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 192, 159); }
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(168, 74%, 43%); }
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 #1dc09f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 192, 159, 10%) | #1dc09f1a | |
rgb(29, 192, 159, 20%) | #1dc09f33 | |
rgb(29, 192, 159, 40%) | #1dc09f4C | |
rgb(29, 192, 159, 60%) | #1dc09f99 | |
rgb(29, 192, 159, 80%) | #1dc09fCC | |
rgb(29, 192, 159, 100%) | #1dc09fFF |
Saturated and desaturated colors of #1dc09f
HSL Code | Preview |
---|---|
hsl(168, 10%, 43%) | |
hsl(168, 20%, 43%) | |
hsl(168, 40%, 43%) | |
hsl(168, 60%, 43%) | |
hsl(168, 80%, 43%) | |
hsl(168, 100%, 43%) |
#1dc09f Color Usage In CSS
body { color: #1dc09f; } p { color: rgb(29, 192, 159); } header { border-bottom:1px solid #1dc09f; }