#78c3dc Color
Color Codes | |
---|---|
Hex Code | #78c3dc |
RGB Code | rgb(120, 195, 220) |
HSL Code | hsl(195, 59%, 67%) |
#78c3dc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(120, 195, 220); }
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, 59%, 67%); }
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 #78c3dc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(120, 195, 220, 10%) | #78c3dc1a | |
rgb(120, 195, 220, 20%) | #78c3dc33 | |
rgb(120, 195, 220, 40%) | #78c3dc4C | |
rgb(120, 195, 220, 60%) | #78c3dc99 | |
rgb(120, 195, 220, 80%) | #78c3dcCC | |
rgb(120, 195, 220, 100%) | #78c3dcFF |
Saturated and desaturated colors of #78c3dc
HSL Code | Preview |
---|---|
hsl(195, 10%, 67%) | |
hsl(195, 20%, 67%) | |
hsl(195, 40%, 67%) | |
hsl(195, 60%, 67%) | |
hsl(195, 80%, 67%) | |
hsl(195, 100%, 67%) |
#78c3dc Color Usage In CSS
body { color: #78c3dc; } p { color: rgb(120, 195, 220); } header { border-bottom:1px solid #78c3dc; }