#34cfe7 Color
Color Codes | |
---|---|
Hex Code | #34cfe7 |
RGB Code | rgb(52, 207, 231) |
HSL Code | hsl(188, 79%, 55%) |
#34cfe7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(52, 207, 231); }
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, 79%, 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 #34cfe7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(52, 207, 231, 10%) | #34cfe71a | |
rgb(52, 207, 231, 20%) | #34cfe733 | |
rgb(52, 207, 231, 40%) | #34cfe74C | |
rgb(52, 207, 231, 60%) | #34cfe799 | |
rgb(52, 207, 231, 80%) | #34cfe7CC | |
rgb(52, 207, 231, 100%) | #34cfe7FF |
Saturated and desaturated colors of #34cfe7
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%) |
#34cfe7 Color Usage In CSS
body { color: #34cfe7; } p { color: rgb(52, 207, 231); } header { border-bottom:1px solid #34cfe7; }