#37347c Color
Color Codes | |
---|---|
Hex Code | #37347c |
RGB Code | rgb(55, 52, 124) |
HSL Code | hsl(243, 41%, 35%) |
#37347c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(55, 52, 124); }
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(243, 41%, 35%); }
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 #37347c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(55, 52, 124, 10%) | #37347c1a | |
rgb(55, 52, 124, 20%) | #37347c33 | |
rgb(55, 52, 124, 40%) | #37347c4C | |
rgb(55, 52, 124, 60%) | #37347c99 | |
rgb(55, 52, 124, 80%) | #37347cCC | |
rgb(55, 52, 124, 100%) | #37347cFF |
Saturated and desaturated colors of #37347c
HSL Code | Preview |
---|---|
hsl(243, 10%, 35%) | |
hsl(243, 20%, 35%) | |
hsl(243, 40%, 35%) | |
hsl(243, 60%, 35%) | |
hsl(243, 80%, 35%) | |
hsl(243, 100%, 35%) |
#37347c Color Usage In CSS
body { color: #37347c; } p { color: rgb(55, 52, 124); } header { border-bottom:1px solid #37347c; }