Random Color Generator

#af4e36 Color

Color Codes
Hex Code #af4e36
RGB Code rgb(175, 78, 54)
HSL Code hsl(12, 53%, 45%)

#af4e36 Color Syntax

rgb()

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

 main {
    background-color: rgb(175, 78, 54);
   }

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(12, 53%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(175, 78, 54, 10%) #af4e361a  
rgb(175, 78, 54, 20%) #af4e3633  
rgb(175, 78, 54, 40%) #af4e364C  
rgb(175, 78, 54, 60%) #af4e3699  
rgb(175, 78, 54, 80%) #af4e36CC  
rgb(175, 78, 54, 100%) #af4e36FF  

Saturated and desaturated colors of #af4e36

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

#af4e36 Color Usage In CSS

 body {
    color: #af4e36;
    }
 p {
    color: rgb(175, 78, 54);
    }
 header {
    border-bottom:1px solid #af4e36;
    }
Recent Random Colors