#1102ef Color
Color Codes | |
---|---|
Hex Code | #1102ef |
RGB Code | rgb(17, 02, 239) |
HSL Code | hsl(244, 98%, 47%) |
#1102ef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 02, 239); }
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(244, 98%, 47%); }
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 #1102ef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 02, 239, 10%) | #1102ef1a | |
rgb(17, 02, 239, 20%) | #1102ef33 | |
rgb(17, 02, 239, 40%) | #1102ef4C | |
rgb(17, 02, 239, 60%) | #1102ef99 | |
rgb(17, 02, 239, 80%) | #1102efCC | |
rgb(17, 02, 239, 100%) | #1102efFF |
Saturated and desaturated colors of #1102ef
HSL Code | Preview |
---|---|
hsl(244, 10%, 47%) | |
hsl(244, 20%, 47%) | |
hsl(244, 40%, 47%) | |
hsl(244, 60%, 47%) | |
hsl(244, 80%, 47%) | |
hsl(244, 100%, 47%) |
#1102ef Color Usage In CSS
body { color: #1102ef; } p { color: rgb(17, 02, 239); } header { border-bottom:1px solid #1102ef; }