Random Color Generator

#601618 Color

Color Codes
Hex Code #601618
RGB Code rgb(96, 22, 24)
HSL Code hsl(358, 63%, 23%)

#601618 Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 22, 24);
   }

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(358, 63%, 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 #601618

RGB Code Hex Code Preview
rgb(96, 22, 24, 10%) #6016181a  
rgb(96, 22, 24, 20%) #60161833  
rgb(96, 22, 24, 40%) #6016184C  
rgb(96, 22, 24, 60%) #60161899  
rgb(96, 22, 24, 80%) #601618CC  
rgb(96, 22, 24, 100%) #601618FF  

Saturated and desaturated colors of #601618

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

#601618 Color Usage In CSS

 body {
    color: #601618;
    }
 p {
    color: rgb(96, 22, 24);
    }
 header {
    border-bottom:1px solid #601618;
    }
Recent Random Colors