#1cdbc6 Color
Color Codes | |
---|---|
Hex Code | #1cdbc6 |
RGB Code | rgb(28, 219, 198) |
HSL Code | hsl(173, 77%, 48%) |
#1cdbc6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 219, 198); }
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(173, 77%, 48%); }
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 #1cdbc6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 219, 198, 10%) | #1cdbc61a | |
rgb(28, 219, 198, 20%) | #1cdbc633 | |
rgb(28, 219, 198, 40%) | #1cdbc64C | |
rgb(28, 219, 198, 60%) | #1cdbc699 | |
rgb(28, 219, 198, 80%) | #1cdbc6CC | |
rgb(28, 219, 198, 100%) | #1cdbc6FF |
Saturated and desaturated colors of #1cdbc6
HSL Code | Preview |
---|---|
hsl(173, 10%, 48%) | |
hsl(173, 20%, 48%) | |
hsl(173, 40%, 48%) | |
hsl(173, 60%, 48%) | |
hsl(173, 80%, 48%) | |
hsl(173, 100%, 48%) |
#1cdbc6 Color Usage In CSS
body { color: #1cdbc6; } p { color: rgb(28, 219, 198); } header { border-bottom:1px solid #1cdbc6; }