#1d63cd Color
Color Codes | |
---|---|
Hex Code | #1d63cd |
RGB Code | rgb(29, 99, 205) |
HSL Code | hsl(216, 75%, 46%) |
#1d63cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 99, 205); }
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(216, 75%, 46%); }
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 #1d63cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 99, 205, 10%) | #1d63cd1a | |
rgb(29, 99, 205, 20%) | #1d63cd33 | |
rgb(29, 99, 205, 40%) | #1d63cd4C | |
rgb(29, 99, 205, 60%) | #1d63cd99 | |
rgb(29, 99, 205, 80%) | #1d63cdCC | |
rgb(29, 99, 205, 100%) | #1d63cdFF |
Saturated and desaturated colors of #1d63cd
HSL Code | Preview |
---|---|
hsl(216, 10%, 46%) | |
hsl(216, 20%, 46%) | |
hsl(216, 40%, 46%) | |
hsl(216, 60%, 46%) | |
hsl(216, 80%, 46%) | |
hsl(216, 100%, 46%) |
#1d63cd Color Usage In CSS
body { color: #1d63cd; } p { color: rgb(29, 99, 205); } header { border-bottom:1px solid #1d63cd; }