Random Color Generator

#c65488 Color

Color Codes
Hex Code #c65488
RGB Code rgb(198, 84, 136)
HSL Code hsl(333, 50%, 55%)

#c65488 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 84, 136);
   }

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(333, 50%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(198, 84, 136, 10%) #c654881a  
rgb(198, 84, 136, 20%) #c6548833  
rgb(198, 84, 136, 40%) #c654884C  
rgb(198, 84, 136, 60%) #c6548899  
rgb(198, 84, 136, 80%) #c65488CC  
rgb(198, 84, 136, 100%) #c65488FF  

Saturated and desaturated colors of #c65488

HSL Code Preview
hsl(333, 10%, 55%)  
hsl(333, 20%, 55%)  
hsl(333, 40%, 55%)  
hsl(333, 60%, 55%)  
hsl(333, 80%, 55%)  
hsl(333, 100%, 55%)  

#c65488 Color Usage In CSS

 body {
    color: #c65488;
    }
 p {
    color: rgb(198, 84, 136);
    }
 header {
    border-bottom:1px solid #c65488;
    }
Recent Random Colors