Random Color Generator

#de764b Color

Color Codes
Hex Code #de764b
RGB Code rgb(222, 118, 75)
HSL Code hsl(18, 69%, 58%)

#de764b Color Syntax

rgb()

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

 main {
    background-color: rgb(222, 118, 75);
   }

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(18, 69%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(222, 118, 75, 10%) #de764b1a  
rgb(222, 118, 75, 20%) #de764b33  
rgb(222, 118, 75, 40%) #de764b4C  
rgb(222, 118, 75, 60%) #de764b99  
rgb(222, 118, 75, 80%) #de764bCC  
rgb(222, 118, 75, 100%) #de764bFF  

Saturated and desaturated colors of #de764b

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

#de764b Color Usage In CSS

 body {
    color: #de764b;
    }
 p {
    color: rgb(222, 118, 75);
    }
 header {
    border-bottom:1px solid #de764b;
    }
Recent Random Colors