#0045eb Color
Color Codes | |
---|---|
Hex Code | #0045eb |
RGB Code | rgb(00, 69, 235) |
HSL Code | hsl(222, 100%, 46%) |
#0045eb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 69, 235); }
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(222, 100%, 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 #0045eb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 69, 235, 10%) | #0045eb1a | |
rgb(00, 69, 235, 20%) | #0045eb33 | |
rgb(00, 69, 235, 40%) | #0045eb4C | |
rgb(00, 69, 235, 60%) | #0045eb99 | |
rgb(00, 69, 235, 80%) | #0045ebCC | |
rgb(00, 69, 235, 100%) | #0045ebFF |
Saturated and desaturated colors of #0045eb
HSL Code | Preview |
---|---|
hsl(222, 10%, 46%) | |
hsl(222, 20%, 46%) | |
hsl(222, 40%, 46%) | |
hsl(222, 60%, 46%) | |
hsl(222, 80%, 46%) | |
hsl(222, 100%, 46%) |
#0045eb Color Usage In CSS
body { color: #0045eb; } p { color: rgb(00, 69, 235); } header { border-bottom:1px solid #0045eb; }