Random Color Generator

#c06b64 Color

Color Codes
Hex Code #c06b64
RGB Code rgb(192, 107, 100)
HSL Code hsl(5, 42%, 57%)

#c06b64 Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 107, 100);
   }

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(5, 42%, 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 #c06b64

RGB Code Hex Code Preview
rgb(192, 107, 100, 10%) #c06b641a  
rgb(192, 107, 100, 20%) #c06b6433  
rgb(192, 107, 100, 40%) #c06b644C  
rgb(192, 107, 100, 60%) #c06b6499  
rgb(192, 107, 100, 80%) #c06b64CC  
rgb(192, 107, 100, 100%) #c06b64FF  

Saturated and desaturated colors of #c06b64

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

#c06b64 Color Usage In CSS

 body {
    color: #c06b64;
    }
 p {
    color: rgb(192, 107, 100);
    }
 header {
    border-bottom:1px solid #c06b64;
    }
Recent Random Colors