#070155 Color
Color Codes | |
---|---|
Hex Code | #070155 |
RGB Code | rgb(07, 01, 85) |
HSL Code | hsl(244, 98%, 17%) |
#070155 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 01, 85); }
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%, 17%); }
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 #070155
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 01, 85, 10%) | #0701551a | |
rgb(07, 01, 85, 20%) | #07015533 | |
rgb(07, 01, 85, 40%) | #0701554C | |
rgb(07, 01, 85, 60%) | #07015599 | |
rgb(07, 01, 85, 80%) | #070155CC | |
rgb(07, 01, 85, 100%) | #070155FF |
Saturated and desaturated colors of #070155
HSL Code | Preview |
---|---|
hsl(244, 10%, 17%) | |
hsl(244, 20%, 17%) | |
hsl(244, 40%, 17%) | |
hsl(244, 60%, 17%) | |
hsl(244, 80%, 17%) | |
hsl(244, 100%, 17%) |
#070155 Color Usage In CSS
body { color: #070155; } p { color: rgb(07, 01, 85); } header { border-bottom:1px solid #070155; }