Random Color Generator

#0720ce Color

Color Codes
Hex Code #0720ce
RGB Code rgb(07, 32, 206)
HSL Code hsl(232, 93%, 42%)

#0720ce Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(07, 32, 206);
   }

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(232, 93%, 42%);
  }

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 #0720ce

RGB Code Hex Code Preview
rgb(07, 32, 206, 10%) #0720ce1a  
rgb(07, 32, 206, 20%) #0720ce33  
rgb(07, 32, 206, 40%) #0720ce4C  
rgb(07, 32, 206, 60%) #0720ce99  
rgb(07, 32, 206, 80%) #0720ceCC  
rgb(07, 32, 206, 100%) #0720ceFF  

Saturated and desaturated colors of #0720ce

HSL Code Preview
hsl(232, 10%, 42%)  
hsl(232, 20%, 42%)  
hsl(232, 40%, 42%)  
hsl(232, 60%, 42%)  
hsl(232, 80%, 42%)  
hsl(232, 100%, 42%)  

#0720ce Color Usage In CSS

 body {
    color: #0720ce;
    }
 p {
    color: rgb(07, 32, 206);
    }
 header {
    border-bottom:1px solid #0720ce;
    }
Recent Random Colors