#376cf2 Color
Color Codes | |
---|---|
Hex Code | #376cf2 |
RGB Code | rgb(55, 108, 242) |
HSL Code | hsl(223, 88%, 58%) |
#376cf2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(55, 108, 242); }
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(223, 88%, 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 #376cf2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(55, 108, 242, 10%) | #376cf21a | |
rgb(55, 108, 242, 20%) | #376cf233 | |
rgb(55, 108, 242, 40%) | #376cf24C | |
rgb(55, 108, 242, 60%) | #376cf299 | |
rgb(55, 108, 242, 80%) | #376cf2CC | |
rgb(55, 108, 242, 100%) | #376cf2FF |
Saturated and desaturated colors of #376cf2
HSL Code | Preview |
---|---|
hsl(223, 10%, 58%) | |
hsl(223, 20%, 58%) | |
hsl(223, 40%, 58%) | |
hsl(223, 60%, 58%) | |
hsl(223, 80%, 58%) | |
hsl(223, 100%, 58%) |
#376cf2 Color Usage In CSS
body { color: #376cf2; } p { color: rgb(55, 108, 242); } header { border-bottom:1px solid #376cf2; }