Random Color Generator

#cc7335 Color

Color Codes
Hex Code #cc7335
RGB Code rgb(204, 115, 53)
HSL Code hsl(25, 60%, 50%)

#cc7335 Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 115, 53);
   }

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(25, 60%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(204, 115, 53, 10%) #cc73351a  
rgb(204, 115, 53, 20%) #cc733533  
rgb(204, 115, 53, 40%) #cc73354C  
rgb(204, 115, 53, 60%) #cc733599  
rgb(204, 115, 53, 80%) #cc7335CC  
rgb(204, 115, 53, 100%) #cc7335FF  

Saturated and desaturated colors of #cc7335

HSL Code Preview
hsl(25, 10%, 50%)  
hsl(25, 20%, 50%)  
hsl(25, 40%, 50%)  
hsl(25, 60%, 50%)  
hsl(25, 80%, 50%)  
hsl(25, 100%, 50%)  

#cc7335 Color Usage In CSS

 body {
    color: #cc7335;
    }
 p {
    color: rgb(204, 115, 53);
    }
 header {
    border-bottom:1px solid #cc7335;
    }
Recent Random Colors