#67c4e4 Color
Color Codes | |
---|---|
Hex Code | #67c4e4 |
RGB Code | rgb(103, 196, 228) |
HSL Code | hsl(195, 70%, 65%) |
#67c4e4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 196, 228); }
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(195, 70%, 65%); }
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 #67c4e4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 196, 228, 10%) | #67c4e41a | |
rgb(103, 196, 228, 20%) | #67c4e433 | |
rgb(103, 196, 228, 40%) | #67c4e44C | |
rgb(103, 196, 228, 60%) | #67c4e499 | |
rgb(103, 196, 228, 80%) | #67c4e4CC | |
rgb(103, 196, 228, 100%) | #67c4e4FF |
Saturated and desaturated colors of #67c4e4
HSL Code | Preview |
---|---|
hsl(195, 10%, 65%) | |
hsl(195, 20%, 65%) | |
hsl(195, 40%, 65%) | |
hsl(195, 60%, 65%) | |
hsl(195, 80%, 65%) | |
hsl(195, 100%, 65%) |
#67c4e4 Color Usage In CSS
body { color: #67c4e4; } p { color: rgb(103, 196, 228); } header { border-bottom:1px solid #67c4e4; }