Random Color Generator

#cd5946 Color

Color Codes
Hex Code #cd5946
RGB Code rgb(205, 89, 70)
HSL Code hsl(8, 57%, 54%)

#cd5946 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 89, 70);
   }

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(8, 57%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(205, 89, 70, 10%) #cd59461a  
rgb(205, 89, 70, 20%) #cd594633  
rgb(205, 89, 70, 40%) #cd59464C  
rgb(205, 89, 70, 60%) #cd594699  
rgb(205, 89, 70, 80%) #cd5946CC  
rgb(205, 89, 70, 100%) #cd5946FF  

Saturated and desaturated colors of #cd5946

HSL Code Preview
hsl(8, 10%, 54%)  
hsl(8, 20%, 54%)  
hsl(8, 40%, 54%)  
hsl(8, 60%, 54%)  
hsl(8, 80%, 54%)  
hsl(8, 100%, 54%)  

#cd5946 Color Usage In CSS

 body {
    color: #cd5946;
    }
 p {
    color: rgb(205, 89, 70);
    }
 header {
    border-bottom:1px solid #cd5946;
    }
Recent Random Colors