#084270 Color
Color Codes | |
---|---|
Hex Code | #084270 |
RGB Code | rgb(08, 66, 112) |
HSL Code | hsl(207, 87%, 24%) |
#084270 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 66, 112); }
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(207, 87%, 24%); }
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 #084270
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 66, 112, 10%) | #0842701a | |
rgb(08, 66, 112, 20%) | #08427033 | |
rgb(08, 66, 112, 40%) | #0842704C | |
rgb(08, 66, 112, 60%) | #08427099 | |
rgb(08, 66, 112, 80%) | #084270CC | |
rgb(08, 66, 112, 100%) | #084270FF |
Saturated and desaturated colors of #084270
HSL Code | Preview |
---|---|
hsl(207, 10%, 24%) | |
hsl(207, 20%, 24%) | |
hsl(207, 40%, 24%) | |
hsl(207, 60%, 24%) | |
hsl(207, 80%, 24%) | |
hsl(207, 100%, 24%) |
#084270 Color Usage In CSS
body { color: #084270; } p { color: rgb(08, 66, 112); } header { border-bottom:1px solid #084270; }