#1c69a2 Color
Color Codes | |
---|---|
Hex Code | #1c69a2 |
RGB Code | rgb(28, 105, 162) |
HSL Code | hsl(206, 71%, 37%) |
#1c69a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 105, 162); }
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(206, 71%, 37%); }
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 #1c69a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 105, 162, 10%) | #1c69a21a | |
rgb(28, 105, 162, 20%) | #1c69a233 | |
rgb(28, 105, 162, 40%) | #1c69a24C | |
rgb(28, 105, 162, 60%) | #1c69a299 | |
rgb(28, 105, 162, 80%) | #1c69a2CC | |
rgb(28, 105, 162, 100%) | #1c69a2FF |
Saturated and desaturated colors of #1c69a2
HSL Code | Preview |
---|---|
hsl(206, 10%, 37%) | |
hsl(206, 20%, 37%) | |
hsl(206, 40%, 37%) | |
hsl(206, 60%, 37%) | |
hsl(206, 80%, 37%) | |
hsl(206, 100%, 37%) |
#1c69a2 Color Usage In CSS
body { color: #1c69a2; } p { color: rgb(28, 105, 162); } header { border-bottom:1px solid #1c69a2; }