#64a2c1 Color
Color Codes | |
---|---|
Hex Code | #64a2c1 |
RGB Code | rgb(100, 162, 193) |
HSL Code | hsl(200, 43%, 57%) |
#64a2c1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 162, 193); }
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(200, 43%, 57%); }
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 #64a2c1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 162, 193, 10%) | #64a2c11a | |
rgb(100, 162, 193, 20%) | #64a2c133 | |
rgb(100, 162, 193, 40%) | #64a2c14C | |
rgb(100, 162, 193, 60%) | #64a2c199 | |
rgb(100, 162, 193, 80%) | #64a2c1CC | |
rgb(100, 162, 193, 100%) | #64a2c1FF |
Saturated and desaturated colors of #64a2c1
HSL Code | Preview |
---|---|
hsl(200, 10%, 57%) | |
hsl(200, 20%, 57%) | |
hsl(200, 40%, 57%) | |
hsl(200, 60%, 57%) | |
hsl(200, 80%, 57%) | |
hsl(200, 100%, 57%) |
#64a2c1 Color Usage In CSS
body { color: #64a2c1; } p { color: rgb(100, 162, 193); } header { border-bottom:1px solid #64a2c1; }