Random Color Generator

#c48a7b Color

Color Codes
Hex Code #c48a7b
RGB Code rgb(196, 138, 123)
HSL Code hsl(12, 38%, 63%)

#c48a7b Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 138, 123);
   }

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(12, 38%, 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 #c48a7b

RGB Code Hex Code Preview
rgb(196, 138, 123, 10%) #c48a7b1a  
rgb(196, 138, 123, 20%) #c48a7b33  
rgb(196, 138, 123, 40%) #c48a7b4C  
rgb(196, 138, 123, 60%) #c48a7b99  
rgb(196, 138, 123, 80%) #c48a7bCC  
rgb(196, 138, 123, 100%) #c48a7bFF  

Saturated and desaturated colors of #c48a7b

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

#c48a7b Color Usage In CSS

 body {
    color: #c48a7b;
    }
 p {
    color: rgb(196, 138, 123);
    }
 header {
    border-bottom:1px solid #c48a7b;
    }
Recent Random Colors