#1c3e7c Color
Color Codes | |
---|---|
Hex Code | #1c3e7c |
RGB Code | rgb(28, 62, 124) |
HSL Code | hsl(219, 63%, 30%) |
#1c3e7c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 62, 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(219, 63%, 30%); }
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 #1c3e7c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 62, 124, 10%) | #1c3e7c1a | |
rgb(28, 62, 124, 20%) | #1c3e7c33 | |
rgb(28, 62, 124, 40%) | #1c3e7c4C | |
rgb(28, 62, 124, 60%) | #1c3e7c99 | |
rgb(28, 62, 124, 80%) | #1c3e7cCC | |
rgb(28, 62, 124, 100%) | #1c3e7cFF |
Saturated and desaturated colors of #1c3e7c
HSL Code | Preview |
---|---|
hsl(219, 10%, 30%) | |
hsl(219, 20%, 30%) | |
hsl(219, 40%, 30%) | |
hsl(219, 60%, 30%) | |
hsl(219, 80%, 30%) | |
hsl(219, 100%, 30%) |
#1c3e7c Color Usage In CSS
body { color: #1c3e7c; } p { color: rgb(28, 62, 124); } header { border-bottom:1px solid #1c3e7c; }