Random Color Generator

#1c0036 Color

Color Codes
Hex Code #1c0036
RGB Code rgb(28, 00, 54)
HSL Code hsl(271, 100%, 11%)

#1c0036 Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 00, 54);
   }

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(271, 100%, 11%);
  }

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 #1c0036

RGB Code Hex Code Preview
rgb(28, 00, 54, 10%) #1c00361a  
rgb(28, 00, 54, 20%) #1c003633  
rgb(28, 00, 54, 40%) #1c00364C  
rgb(28, 00, 54, 60%) #1c003699  
rgb(28, 00, 54, 80%) #1c0036CC  
rgb(28, 00, 54, 100%) #1c0036FF  

Saturated and desaturated colors of #1c0036

HSL Code Preview
hsl(271, 10%, 11%)  
hsl(271, 20%, 11%)  
hsl(271, 40%, 11%)  
hsl(271, 60%, 11%)  
hsl(271, 80%, 11%)  
hsl(271, 100%, 11%)  

#1c0036 Color Usage In CSS

 body {
    color: #1c0036;
    }
 p {
    color: rgb(28, 00, 54);
    }
 header {
    border-bottom:1px solid #1c0036;
    }
Recent Random Colors