Random Color Generator

#dcf385 Color

Color Codes
Hex Code #dcf385
RGB Code rgb(220, 243, 133)
HSL Code hsl(73, 82%, 74%)

#dcf385 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 243, 133);
   }

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(73, 82%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(220, 243, 133, 10%) #dcf3851a  
rgb(220, 243, 133, 20%) #dcf38533  
rgb(220, 243, 133, 40%) #dcf3854C  
rgb(220, 243, 133, 60%) #dcf38599  
rgb(220, 243, 133, 80%) #dcf385CC  
rgb(220, 243, 133, 100%) #dcf385FF  

Saturated and desaturated colors of #dcf385

HSL Code Preview
hsl(73, 10%, 74%)  
hsl(73, 20%, 74%)  
hsl(73, 40%, 74%)  
hsl(73, 60%, 74%)  
hsl(73, 80%, 74%)  
hsl(73, 100%, 74%)  

#dcf385 Color Usage In CSS

 body {
    color: #dcf385;
    }
 p {
    color: rgb(220, 243, 133);
    }
 header {
    border-bottom:1px solid #dcf385;
    }
Recent Random Colors