#1db1cd Color
Color Codes | |
---|---|
Hex Code | #1db1cd |
RGB Code | rgb(29, 177, 205) |
HSL Code | hsl(190, 75%, 46%) |
#1db1cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 177, 205); }
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(190, 75%, 46%); }
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 #1db1cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 177, 205, 10%) | #1db1cd1a | |
rgb(29, 177, 205, 20%) | #1db1cd33 | |
rgb(29, 177, 205, 40%) | #1db1cd4C | |
rgb(29, 177, 205, 60%) | #1db1cd99 | |
rgb(29, 177, 205, 80%) | #1db1cdCC | |
rgb(29, 177, 205, 100%) | #1db1cdFF |
Saturated and desaturated colors of #1db1cd
HSL Code | Preview |
---|---|
hsl(190, 10%, 46%) | |
hsl(190, 20%, 46%) | |
hsl(190, 40%, 46%) | |
hsl(190, 60%, 46%) | |
hsl(190, 80%, 46%) | |
hsl(190, 100%, 46%) |
#1db1cd Color Usage In CSS
body { color: #1db1cd; } p { color: rgb(29, 177, 205); } header { border-bottom:1px solid #1db1cd; }