#1cdbfa Color
Color Codes | |
---|---|
Hex Code | #1cdbfa |
RGB Code | rgb(28, 219, 250) |
HSL Code | hsl(188, 96%, 55%) |
#1cdbfa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 219, 250); }
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(188, 96%, 55%); }
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 #1cdbfa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 219, 250, 10%) | #1cdbfa1a | |
rgb(28, 219, 250, 20%) | #1cdbfa33 | |
rgb(28, 219, 250, 40%) | #1cdbfa4C | |
rgb(28, 219, 250, 60%) | #1cdbfa99 | |
rgb(28, 219, 250, 80%) | #1cdbfaCC | |
rgb(28, 219, 250, 100%) | #1cdbfaFF |
Saturated and desaturated colors of #1cdbfa
HSL Code | Preview |
---|---|
hsl(188, 10%, 55%) | |
hsl(188, 20%, 55%) | |
hsl(188, 40%, 55%) | |
hsl(188, 60%, 55%) | |
hsl(188, 80%, 55%) | |
hsl(188, 100%, 55%) |
#1cdbfa Color Usage In CSS
body { color: #1cdbfa; } p { color: rgb(28, 219, 250); } header { border-bottom:1px solid #1cdbfa; }