#63c6b2 Color
Color Codes | |
---|---|
Hex Code | #63c6b2 |
RGB Code | rgb(99, 198, 178) |
HSL Code | hsl(168, 46%, 58%) |
#63c6b2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(99, 198, 178); }
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(168, 46%, 58%); }
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 #63c6b2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(99, 198, 178, 10%) | #63c6b21a | |
rgb(99, 198, 178, 20%) | #63c6b233 | |
rgb(99, 198, 178, 40%) | #63c6b24C | |
rgb(99, 198, 178, 60%) | #63c6b299 | |
rgb(99, 198, 178, 80%) | #63c6b2CC | |
rgb(99, 198, 178, 100%) | #63c6b2FF |
Saturated and desaturated colors of #63c6b2
HSL Code | Preview |
---|---|
hsl(168, 10%, 58%) | |
hsl(168, 20%, 58%) | |
hsl(168, 40%, 58%) | |
hsl(168, 60%, 58%) | |
hsl(168, 80%, 58%) | |
hsl(168, 100%, 58%) |
#63c6b2 Color Usage In CSS
body { color: #63c6b2; } p { color: rgb(99, 198, 178); } header { border-bottom:1px solid #63c6b2; }