Random Color Generator

#b07ce7 Color

Color Codes
Hex Code #b07ce7
RGB Code rgb(176, 124, 231)
HSL Code hsl(269, 69%, 70%)

#b07ce7 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 124, 231);
   }

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(269, 69%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(176, 124, 231, 10%) #b07ce71a  
rgb(176, 124, 231, 20%) #b07ce733  
rgb(176, 124, 231, 40%) #b07ce74C  
rgb(176, 124, 231, 60%) #b07ce799  
rgb(176, 124, 231, 80%) #b07ce7CC  
rgb(176, 124, 231, 100%) #b07ce7FF  

Saturated and desaturated colors of #b07ce7

HSL Code Preview
hsl(269, 10%, 70%)  
hsl(269, 20%, 70%)  
hsl(269, 40%, 70%)  
hsl(269, 60%, 70%)  
hsl(269, 80%, 70%)  
hsl(269, 100%, 70%)  

#b07ce7 Color Usage In CSS

 body {
    color: #b07ce7;
    }
 p {
    color: rgb(176, 124, 231);
    }
 header {
    border-bottom:1px solid #b07ce7;
    }
Recent Random Colors