Random Color Generator

#c08083 Color

Color Codes
Hex Code #c08083
RGB Code rgb(192, 128, 131)
HSL Code hsl(357, 34%, 63%)

#c08083 Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 128, 131);
   }

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(357, 34%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(192, 128, 131, 10%) #c080831a  
rgb(192, 128, 131, 20%) #c0808333  
rgb(192, 128, 131, 40%) #c080834C  
rgb(192, 128, 131, 60%) #c0808399  
rgb(192, 128, 131, 80%) #c08083CC  
rgb(192, 128, 131, 100%) #c08083FF  

Saturated and desaturated colors of #c08083

HSL Code Preview
hsl(357, 10%, 63%)  
hsl(357, 20%, 63%)  
hsl(357, 40%, 63%)  
hsl(357, 60%, 63%)  
hsl(357, 80%, 63%)  
hsl(357, 100%, 63%)  

#c08083 Color Usage In CSS

 body {
    color: #c08083;
    }
 p {
    color: rgb(192, 128, 131);
    }
 header {
    border-bottom:1px solid #c08083;
    }
Recent Random Colors