Random Color Generator

#c15f1e Color

Color Codes
Hex Code #c15f1e
RGB Code rgb(193, 95, 30)
HSL Code hsl(24, 73%, 44%)

#c15f1e Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 95, 30);
   }

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(24, 73%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(193, 95, 30, 10%) #c15f1e1a  
rgb(193, 95, 30, 20%) #c15f1e33  
rgb(193, 95, 30, 40%) #c15f1e4C  
rgb(193, 95, 30, 60%) #c15f1e99  
rgb(193, 95, 30, 80%) #c15f1eCC  
rgb(193, 95, 30, 100%) #c15f1eFF  

Saturated and desaturated colors of #c15f1e

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

#c15f1e Color Usage In CSS

 body {
    color: #c15f1e;
    }
 p {
    color: rgb(193, 95, 30);
    }
 header {
    border-bottom:1px solid #c15f1e;
    }
Recent Random Colors