#65cfeb Color
Color Codes | |
---|---|
Hex Code | #65cfeb |
RGB Code | rgb(101, 207, 235) |
HSL Code | hsl(193, 77%, 66%) |
#65cfeb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(101, 207, 235); }
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(193, 77%, 66%); }
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 #65cfeb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(101, 207, 235, 10%) | #65cfeb1a | |
rgb(101, 207, 235, 20%) | #65cfeb33 | |
rgb(101, 207, 235, 40%) | #65cfeb4C | |
rgb(101, 207, 235, 60%) | #65cfeb99 | |
rgb(101, 207, 235, 80%) | #65cfebCC | |
rgb(101, 207, 235, 100%) | #65cfebFF |
Saturated and desaturated colors of #65cfeb
HSL Code | Preview |
---|---|
hsl(193, 10%, 66%) | |
hsl(193, 20%, 66%) | |
hsl(193, 40%, 66%) | |
hsl(193, 60%, 66%) | |
hsl(193, 80%, 66%) | |
hsl(193, 100%, 66%) |
#65cfeb Color Usage In CSS
body { color: #65cfeb; } p { color: rgb(101, 207, 235); } header { border-bottom:1px solid #65cfeb; }