Random Color Generator

#600130 Color

Color Codes
Hex Code #600130
RGB Code rgb(96, 01, 48)
HSL Code hsl(330, 98%, 19%)

#600130 Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 01, 48);
   }

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(330, 98%, 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 #600130

RGB Code Hex Code Preview
rgb(96, 01, 48, 10%) #6001301a  
rgb(96, 01, 48, 20%) #60013033  
rgb(96, 01, 48, 40%) #6001304C  
rgb(96, 01, 48, 60%) #60013099  
rgb(96, 01, 48, 80%) #600130CC  
rgb(96, 01, 48, 100%) #600130FF  

Saturated and desaturated colors of #600130

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

#600130 Color Usage In CSS

 body {
    color: #600130;
    }
 p {
    color: rgb(96, 01, 48);
    }
 header {
    border-bottom:1px solid #600130;
    }
Recent Random Colors