Random Color Generator

#7266db Color

Color Codes
Hex Code #7266db
RGB Code rgb(114, 102, 219)
HSL Code hsl(246, 62%, 63%)

#7266db Color Syntax

rgb()

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

 main {
    background-color: rgb(114, 102, 219);
   }

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(246, 62%, 63%);
  }

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 #7266db

RGB Code Hex Code Preview
rgb(114, 102, 219, 10%) #7266db1a  
rgb(114, 102, 219, 20%) #7266db33  
rgb(114, 102, 219, 40%) #7266db4C  
rgb(114, 102, 219, 60%) #7266db99  
rgb(114, 102, 219, 80%) #7266dbCC  
rgb(114, 102, 219, 100%) #7266dbFF  

Saturated and desaturated colors of #7266db

HSL Code Preview
hsl(246, 10%, 63%)  
hsl(246, 20%, 63%)  
hsl(246, 40%, 63%)  
hsl(246, 60%, 63%)  
hsl(246, 80%, 63%)  
hsl(246, 100%, 63%)  

#7266db Color Usage In CSS

 body {
    color: #7266db;
    }
 p {
    color: rgb(114, 102, 219);
    }
 header {
    border-bottom:1px solid #7266db;
    }
Recent Random Colors