Random Color Generator

#6f33af Color

Color Codes
Hex Code #6f33af
RGB Code rgb(111, 51, 175)
HSL Code hsl(269, 55%, 44%)

#6f33af Color Syntax

rgb()

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

 main {
    background-color: rgb(111, 51, 175);
   }

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, 55%, 44%);
  }

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 #6f33af

RGB Code Hex Code Preview
rgb(111, 51, 175, 10%) #6f33af1a  
rgb(111, 51, 175, 20%) #6f33af33  
rgb(111, 51, 175, 40%) #6f33af4C  
rgb(111, 51, 175, 60%) #6f33af99  
rgb(111, 51, 175, 80%) #6f33afCC  
rgb(111, 51, 175, 100%) #6f33afFF  

Saturated and desaturated colors of #6f33af

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

#6f33af Color Usage In CSS

 body {
    color: #6f33af;
    }
 p {
    color: rgb(111, 51, 175);
    }
 header {
    border-bottom:1px solid #6f33af;
    }
Recent Random Colors