#103c69 Color
Color Codes | |
---|---|
Hex Code | #103c69 |
RGB Code | rgb(16, 60, 105) |
HSL Code | hsl(210, 74%, 24%) |
#103c69 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(16, 60, 105); }
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(210, 74%, 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 #103c69
RGB Code | Hex Code | Preview |
---|---|---|
rgb(16, 60, 105, 10%) | #103c691a | |
rgb(16, 60, 105, 20%) | #103c6933 | |
rgb(16, 60, 105, 40%) | #103c694C | |
rgb(16, 60, 105, 60%) | #103c6999 | |
rgb(16, 60, 105, 80%) | #103c69CC | |
rgb(16, 60, 105, 100%) | #103c69FF |
Saturated and desaturated colors of #103c69
HSL Code | Preview |
---|---|
hsl(210, 10%, 24%) | |
hsl(210, 20%, 24%) | |
hsl(210, 40%, 24%) | |
hsl(210, 60%, 24%) | |
hsl(210, 80%, 24%) | |
hsl(210, 100%, 24%) |
#103c69 Color Usage In CSS
body { color: #103c69; } p { color: rgb(16, 60, 105); } header { border-bottom:1px solid #103c69; }