Random Color Generator

#bf75c4 Color

Color Codes
Hex Code #bf75c4
RGB Code rgb(191, 117, 196)
HSL Code hsl(296, 40%, 61%)

#bf75c4 Color Syntax

rgb()

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

 main {
    background-color: rgb(191, 117, 196);
   }

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(296, 40%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(191, 117, 196, 10%) #bf75c41a  
rgb(191, 117, 196, 20%) #bf75c433  
rgb(191, 117, 196, 40%) #bf75c44C  
rgb(191, 117, 196, 60%) #bf75c499  
rgb(191, 117, 196, 80%) #bf75c4CC  
rgb(191, 117, 196, 100%) #bf75c4FF  

Saturated and desaturated colors of #bf75c4

HSL Code Preview
hsl(296, 10%, 61%)  
hsl(296, 20%, 61%)  
hsl(296, 40%, 61%)  
hsl(296, 60%, 61%)  
hsl(296, 80%, 61%)  
hsl(296, 100%, 61%)  

#bf75c4 Color Usage In CSS

 body {
    color: #bf75c4;
    }
 p {
    color: rgb(191, 117, 196);
    }
 header {
    border-bottom:1px solid #bf75c4;
    }
Recent Random Colors