#0244bb Color
Color Codes | |
---|---|
Hex Code | #0244bb |
RGB Code | rgb(02, 68, 187) |
HSL Code | hsl(219, 98%, 37%) |
#0244bb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(02, 68, 187); }
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(219, 98%, 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 #0244bb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(02, 68, 187, 10%) | #0244bb1a | |
rgb(02, 68, 187, 20%) | #0244bb33 | |
rgb(02, 68, 187, 40%) | #0244bb4C | |
rgb(02, 68, 187, 60%) | #0244bb99 | |
rgb(02, 68, 187, 80%) | #0244bbCC | |
rgb(02, 68, 187, 100%) | #0244bbFF |
Saturated and desaturated colors of #0244bb
HSL Code | Preview |
---|---|
hsl(219, 10%, 37%) | |
hsl(219, 20%, 37%) | |
hsl(219, 40%, 37%) | |
hsl(219, 60%, 37%) | |
hsl(219, 80%, 37%) | |
hsl(219, 100%, 37%) |
#0244bb Color Usage In CSS
body { color: #0244bb; } p { color: rgb(02, 68, 187); } header { border-bottom:1px solid #0244bb; }