Random Color Generator

#cf931d Color

Color Codes
Hex Code #cf931d
RGB Code rgb(207, 147, 29)
HSL Code hsl(40, 75%, 46%)

#cf931d Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 147, 29);
   }

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(40, 75%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(207, 147, 29, 10%) #cf931d1a  
rgb(207, 147, 29, 20%) #cf931d33  
rgb(207, 147, 29, 40%) #cf931d4C  
rgb(207, 147, 29, 60%) #cf931d99  
rgb(207, 147, 29, 80%) #cf931dCC  
rgb(207, 147, 29, 100%) #cf931dFF  

Saturated and desaturated colors of #cf931d

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

#cf931d Color Usage In CSS

 body {
    color: #cf931d;
    }
 p {
    color: rgb(207, 147, 29);
    }
 header {
    border-bottom:1px solid #cf931d;
    }
Recent Random Colors