#1c21be Color
Color Codes | |
---|---|
Hex Code | #1c21be |
RGB Code | rgb(28, 33, 190) |
HSL Code | hsl(238, 74%, 43%) |
#1c21be Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 33, 190); }
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(238, 74%, 43%); }
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 #1c21be
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 33, 190, 10%) | #1c21be1a | |
rgb(28, 33, 190, 20%) | #1c21be33 | |
rgb(28, 33, 190, 40%) | #1c21be4C | |
rgb(28, 33, 190, 60%) | #1c21be99 | |
rgb(28, 33, 190, 80%) | #1c21beCC | |
rgb(28, 33, 190, 100%) | #1c21beFF |
Saturated and desaturated colors of #1c21be
HSL Code | Preview |
---|---|
hsl(238, 10%, 43%) | |
hsl(238, 20%, 43%) | |
hsl(238, 40%, 43%) | |
hsl(238, 60%, 43%) | |
hsl(238, 80%, 43%) | |
hsl(238, 100%, 43%) |
#1c21be Color Usage In CSS
body { color: #1c21be; } p { color: rgb(28, 33, 190); } header { border-bottom:1px solid #1c21be; }