Random Color Generator

#600002 Color

Color Codes
Hex Code #600002
RGB Code rgb(96, 00, 02)
HSL Code hsl(359, 100%, 19%)

#600002 Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 00, 02);
   }

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(359, 100%, 19%);
  }

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

RGB Code Hex Code Preview
rgb(96, 00, 02, 10%) #6000021a  
rgb(96, 00, 02, 20%) #60000233  
rgb(96, 00, 02, 40%) #6000024C  
rgb(96, 00, 02, 60%) #60000299  
rgb(96, 00, 02, 80%) #600002CC  
rgb(96, 00, 02, 100%) #600002FF  

Saturated and desaturated colors of #600002

HSL Code Preview
hsl(359, 10%, 19%)  
hsl(359, 20%, 19%)  
hsl(359, 40%, 19%)  
hsl(359, 60%, 19%)  
hsl(359, 80%, 19%)  
hsl(359, 100%, 19%)  

#600002 Color Usage In CSS

 body {
    color: #600002;
    }
 p {
    color: rgb(96, 00, 02);
    }
 header {
    border-bottom:1px solid #600002;
    }
Recent Random Colors