Random Color Generator

#b68afe Color

Color Codes
Hex Code #b68afe
RGB Code rgb(182, 138, 254)
HSL Code hsl(263, 98%, 77%)

#b68afe Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 138, 254);
   }

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(263, 98%, 77%);
  }

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 #b68afe

RGB Code Hex Code Preview
rgb(182, 138, 254, 10%) #b68afe1a  
rgb(182, 138, 254, 20%) #b68afe33  
rgb(182, 138, 254, 40%) #b68afe4C  
rgb(182, 138, 254, 60%) #b68afe99  
rgb(182, 138, 254, 80%) #b68afeCC  
rgb(182, 138, 254, 100%) #b68afeFF  

Saturated and desaturated colors of #b68afe

HSL Code Preview
hsl(263, 10%, 77%)  
hsl(263, 20%, 77%)  
hsl(263, 40%, 77%)  
hsl(263, 60%, 77%)  
hsl(263, 80%, 77%)  
hsl(263, 100%, 77%)  

#b68afe Color Usage In CSS

 body {
    color: #b68afe;
    }
 p {
    color: rgb(182, 138, 254);
    }
 header {
    border-bottom:1px solid #b68afe;
    }
Recent Random Colors