Random Color Generator

#cf5f09 Color

Color Codes
Hex Code #cf5f09
RGB Code rgb(207, 95, 09)
HSL Code hsl(26, 92%, 42%)

#cf5f09 Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 95, 09);
   }

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(26, 92%, 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 #cf5f09

RGB Code Hex Code Preview
rgb(207, 95, 09, 10%) #cf5f091a  
rgb(207, 95, 09, 20%) #cf5f0933  
rgb(207, 95, 09, 40%) #cf5f094C  
rgb(207, 95, 09, 60%) #cf5f0999  
rgb(207, 95, 09, 80%) #cf5f09CC  
rgb(207, 95, 09, 100%) #cf5f09FF  

Saturated and desaturated colors of #cf5f09

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

#cf5f09 Color Usage In CSS

 body {
    color: #cf5f09;
    }
 p {
    color: rgb(207, 95, 09);
    }
 header {
    border-bottom:1px solid #cf5f09;
    }
Recent Random Colors