#3765cb Color
Color Codes | |
---|---|
Hex Code | #3765cb |
RGB Code | rgb(55, 101, 203) |
HSL Code | hsl(221, 59%, 51%) |
#3765cb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(55, 101, 203); }
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(221, 59%, 51%); }
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 #3765cb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(55, 101, 203, 10%) | #3765cb1a | |
rgb(55, 101, 203, 20%) | #3765cb33 | |
rgb(55, 101, 203, 40%) | #3765cb4C | |
rgb(55, 101, 203, 60%) | #3765cb99 | |
rgb(55, 101, 203, 80%) | #3765cbCC | |
rgb(55, 101, 203, 100%) | #3765cbFF |
Saturated and desaturated colors of #3765cb
HSL Code | Preview |
---|---|
hsl(221, 10%, 51%) | |
hsl(221, 20%, 51%) | |
hsl(221, 40%, 51%) | |
hsl(221, 60%, 51%) | |
hsl(221, 80%, 51%) | |
hsl(221, 100%, 51%) |
#3765cb Color Usage In CSS
body { color: #3765cb; } p { color: rgb(55, 101, 203); } header { border-bottom:1px solid #3765cb; }