Random Color Generator

#661da5 Color

Color Codes
Hex Code #661da5
RGB Code rgb(102, 29, 165)
HSL Code hsl(272, 70%, 38%)

#661da5 Color Syntax

rgb()

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

 main {
    background-color: rgb(102, 29, 165);
   }

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(272, 70%, 38%);
  }

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 #661da5

RGB Code Hex Code Preview
rgb(102, 29, 165, 10%) #661da51a  
rgb(102, 29, 165, 20%) #661da533  
rgb(102, 29, 165, 40%) #661da54C  
rgb(102, 29, 165, 60%) #661da599  
rgb(102, 29, 165, 80%) #661da5CC  
rgb(102, 29, 165, 100%) #661da5FF  

Saturated and desaturated colors of #661da5

HSL Code Preview
hsl(272, 10%, 38%)  
hsl(272, 20%, 38%)  
hsl(272, 40%, 38%)  
hsl(272, 60%, 38%)  
hsl(272, 80%, 38%)  
hsl(272, 100%, 38%)  

#661da5 Color Usage In CSS

 body {
    color: #661da5;
    }
 p {
    color: rgb(102, 29, 165);
    }
 header {
    border-bottom:1px solid #661da5;
    }
Recent Random Colors