#929bc3 Color
Color Codes | |
---|---|
Hex Code | #929bc3 |
RGB Code | rgb(146, 155, 195) |
HSL Code | hsl(229, 29%, 67%) |
#929bc3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(146, 155, 195); }
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(229, 29%, 67%); }
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 #929bc3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(146, 155, 195, 10%) | #929bc31a | |
rgb(146, 155, 195, 20%) | #929bc333 | |
rgb(146, 155, 195, 40%) | #929bc34C | |
rgb(146, 155, 195, 60%) | #929bc399 | |
rgb(146, 155, 195, 80%) | #929bc3CC | |
rgb(146, 155, 195, 100%) | #929bc3FF |
Saturated and desaturated colors of #929bc3
HSL Code | Preview |
---|---|
hsl(229, 10%, 67%) | |
hsl(229, 20%, 67%) | |
hsl(229, 40%, 67%) | |
hsl(229, 60%, 67%) | |
hsl(229, 80%, 67%) | |
hsl(229, 100%, 67%) |
#929bc3 Color Usage In CSS
body { color: #929bc3; } p { color: rgb(146, 155, 195); } header { border-bottom:1px solid #929bc3; }