Random Color Generator

#c1dc04 Color

Color Codes
Hex Code #c1dc04
RGB Code rgb(193, 220, 04)
HSL Code hsl(68, 96%, 44%)

#c1dc04 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 220, 04);
   }

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(68, 96%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(193, 220, 04, 10%) #c1dc041a  
rgb(193, 220, 04, 20%) #c1dc0433  
rgb(193, 220, 04, 40%) #c1dc044C  
rgb(193, 220, 04, 60%) #c1dc0499  
rgb(193, 220, 04, 80%) #c1dc04CC  
rgb(193, 220, 04, 100%) #c1dc04FF  

Saturated and desaturated colors of #c1dc04

HSL Code Preview
hsl(68, 10%, 44%)  
hsl(68, 20%, 44%)  
hsl(68, 40%, 44%)  
hsl(68, 60%, 44%)  
hsl(68, 80%, 44%)  
hsl(68, 100%, 44%)  

#c1dc04 Color Usage In CSS

 body {
    color: #c1dc04;
    }
 p {
    color: rgb(193, 220, 04);
    }
 header {
    border-bottom:1px solid #c1dc04;
    }
Recent Random Colors