Random Color Generator

#c26366 Color

Color Codes
Hex Code #c26366
RGB Code rgb(194, 99, 102)
HSL Code hsl(358, 44%, 57%)

#c26366 Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 99, 102);
   }

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(358, 44%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(194, 99, 102, 10%) #c263661a  
rgb(194, 99, 102, 20%) #c2636633  
rgb(194, 99, 102, 40%) #c263664C  
rgb(194, 99, 102, 60%) #c2636699  
rgb(194, 99, 102, 80%) #c26366CC  
rgb(194, 99, 102, 100%) #c26366FF  

Saturated and desaturated colors of #c26366

HSL Code Preview
hsl(358, 10%, 57%)  
hsl(358, 20%, 57%)  
hsl(358, 40%, 57%)  
hsl(358, 60%, 57%)  
hsl(358, 80%, 57%)  
hsl(358, 100%, 57%)  

#c26366 Color Usage In CSS

 body {
    color: #c26366;
    }
 p {
    color: rgb(194, 99, 102);
    }
 header {
    border-bottom:1px solid #c26366;
    }
Recent Random Colors