Random Color Generator

#1c1925 Color

Color Codes
Hex Code #1c1925
RGB Code rgb(28, 25, 37)
HSL Code hsl(255, 19%, 12%)

#1c1925 Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 25, 37);
   }

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(255, 19%, 12%);
  }

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

RGB Code Hex Code Preview
rgb(28, 25, 37, 10%) #1c19251a  
rgb(28, 25, 37, 20%) #1c192533  
rgb(28, 25, 37, 40%) #1c19254C  
rgb(28, 25, 37, 60%) #1c192599  
rgb(28, 25, 37, 80%) #1c1925CC  
rgb(28, 25, 37, 100%) #1c1925FF  

Saturated and desaturated colors of #1c1925

HSL Code Preview
hsl(255, 10%, 12%)  
hsl(255, 20%, 12%)  
hsl(255, 40%, 12%)  
hsl(255, 60%, 12%)  
hsl(255, 80%, 12%)  
hsl(255, 100%, 12%)  

#1c1925 Color Usage In CSS

 body {
    color: #1c1925;
    }
 p {
    color: rgb(28, 25, 37);
    }
 header {
    border-bottom:1px solid #1c1925;
    }
Recent Random Colors