Random Color Generator

#8274cb Color

Color Codes
Hex Code #8274cb
RGB Code rgb(130, 116, 203)
HSL Code hsl(250, 46%, 63%)

#8274cb Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 116, 203);
   }

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(250, 46%, 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 #8274cb

RGB Code Hex Code Preview
rgb(130, 116, 203, 10%) #8274cb1a  
rgb(130, 116, 203, 20%) #8274cb33  
rgb(130, 116, 203, 40%) #8274cb4C  
rgb(130, 116, 203, 60%) #8274cb99  
rgb(130, 116, 203, 80%) #8274cbCC  
rgb(130, 116, 203, 100%) #8274cbFF  

Saturated and desaturated colors of #8274cb

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

#8274cb Color Usage In CSS

 body {
    color: #8274cb;
    }
 p {
    color: rgb(130, 116, 203);
    }
 header {
    border-bottom:1px solid #8274cb;
    }
Recent Random Colors