#210377 Color
Color Codes | |
---|---|
Hex Code | #210377 |
RGB Code | rgb(33, 03, 119) |
HSL Code | hsl(256, 95%, 24%) |
#210377 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(33, 03, 119); }
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(256, 95%, 24%); }
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 #210377
RGB Code | Hex Code | Preview |
---|---|---|
rgb(33, 03, 119, 10%) | #2103771a | |
rgb(33, 03, 119, 20%) | #21037733 | |
rgb(33, 03, 119, 40%) | #2103774C | |
rgb(33, 03, 119, 60%) | #21037799 | |
rgb(33, 03, 119, 80%) | #210377CC | |
rgb(33, 03, 119, 100%) | #210377FF |
Saturated and desaturated colors of #210377
HSL Code | Preview |
---|---|
hsl(256, 10%, 24%) | |
hsl(256, 20%, 24%) | |
hsl(256, 40%, 24%) | |
hsl(256, 60%, 24%) | |
hsl(256, 80%, 24%) | |
hsl(256, 100%, 24%) |
#210377 Color Usage In CSS
body { color: #210377; } p { color: rgb(33, 03, 119); } header { border-bottom:1px solid #210377; }