Random Color Generator

#c60090 Color

Color Codes
Hex Code #c60090
RGB Code rgb(198, 00, 144)
HSL Code hsl(316, 100%, 39%)

#c60090 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 00, 144);
   }

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(316, 100%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(198, 00, 144, 10%) #c600901a  
rgb(198, 00, 144, 20%) #c6009033  
rgb(198, 00, 144, 40%) #c600904C  
rgb(198, 00, 144, 60%) #c6009099  
rgb(198, 00, 144, 80%) #c60090CC  
rgb(198, 00, 144, 100%) #c60090FF  

Saturated and desaturated colors of #c60090

HSL Code Preview
hsl(316, 10%, 39%)  
hsl(316, 20%, 39%)  
hsl(316, 40%, 39%)  
hsl(316, 60%, 39%)  
hsl(316, 80%, 39%)  
hsl(316, 100%, 39%)  

#c60090 Color Usage In CSS

 body {
    color: #c60090;
    }
 p {
    color: rgb(198, 00, 144);
    }
 header {
    border-bottom:1px solid #c60090;
    }
Recent Random Colors