Random Color Generator

#7084fa Color

Color Codes
Hex Code #7084fa
RGB Code rgb(112, 132, 250)
HSL Code hsl(231, 93%, 71%)

#7084fa Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 132, 250);
   }

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(231, 93%, 71%);
  }

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 #7084fa

RGB Code Hex Code Preview
rgb(112, 132, 250, 10%) #7084fa1a  
rgb(112, 132, 250, 20%) #7084fa33  
rgb(112, 132, 250, 40%) #7084fa4C  
rgb(112, 132, 250, 60%) #7084fa99  
rgb(112, 132, 250, 80%) #7084faCC  
rgb(112, 132, 250, 100%) #7084faFF  

Saturated and desaturated colors of #7084fa

HSL Code Preview
hsl(231, 10%, 71%)  
hsl(231, 20%, 71%)  
hsl(231, 40%, 71%)  
hsl(231, 60%, 71%)  
hsl(231, 80%, 71%)  
hsl(231, 100%, 71%)  

#7084fa Color Usage In CSS

 body {
    color: #7084fa;
    }
 p {
    color: rgb(112, 132, 250);
    }
 header {
    border-bottom:1px solid #7084fa;
    }
Recent Random Colors