Random Color Generator

#c67175 Color

Color Codes
Hex Code #c67175
RGB Code rgb(198, 113, 117)
HSL Code hsl(357, 43%, 61%)

#c67175 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 113, 117);
   }

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, 43%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(198, 113, 117, 10%) #c671751a  
rgb(198, 113, 117, 20%) #c6717533  
rgb(198, 113, 117, 40%) #c671754C  
rgb(198, 113, 117, 60%) #c6717599  
rgb(198, 113, 117, 80%) #c67175CC  
rgb(198, 113, 117, 100%) #c67175FF  

Saturated and desaturated colors of #c67175

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

#c67175 Color Usage In CSS

 body {
    color: #c67175;
    }
 p {
    color: rgb(198, 113, 117);
    }
 header {
    border-bottom:1px solid #c67175;
    }
Recent Random Colors