Random Color Generator

#702606 Color

Color Codes
Hex Code #702606
RGB Code rgb(112, 38, 06)
HSL Code hsl(18, 90%, 23%)

#702606 Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 38, 06);
   }

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, 90%, 23%);
  }

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

RGB Code Hex Code Preview
rgb(112, 38, 06, 10%) #7026061a  
rgb(112, 38, 06, 20%) #70260633  
rgb(112, 38, 06, 40%) #7026064C  
rgb(112, 38, 06, 60%) #70260699  
rgb(112, 38, 06, 80%) #702606CC  
rgb(112, 38, 06, 100%) #702606FF  

Saturated and desaturated colors of #702606

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

#702606 Color Usage In CSS

 body {
    color: #702606;
    }
 p {
    color: rgb(112, 38, 06);
    }
 header {
    border-bottom:1px solid #702606;
    }
Recent Random Colors