Random Color Generator

#cf5105 Color

Color Codes
Hex Code #cf5105
RGB Code rgb(207, 81, 05)
HSL Code hsl(23, 95%, 42%)

#cf5105 Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 81, 05);
   }

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(23, 95%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(207, 81, 05, 10%) #cf51051a  
rgb(207, 81, 05, 20%) #cf510533  
rgb(207, 81, 05, 40%) #cf51054C  
rgb(207, 81, 05, 60%) #cf510599  
rgb(207, 81, 05, 80%) #cf5105CC  
rgb(207, 81, 05, 100%) #cf5105FF  

Saturated and desaturated colors of #cf5105

HSL Code Preview
hsl(23, 10%, 42%)  
hsl(23, 20%, 42%)  
hsl(23, 40%, 42%)  
hsl(23, 60%, 42%)  
hsl(23, 80%, 42%)  
hsl(23, 100%, 42%)  

#cf5105 Color Usage In CSS

 body {
    color: #cf5105;
    }
 p {
    color: rgb(207, 81, 05);
    }
 header {
    border-bottom:1px solid #cf5105;
    }
Recent Random Colors