Random Color Generator

#d0dd1e Color

Color Codes
Hex Code #d0dd1e
RGB Code rgb(208, 221, 30)
HSL Code hsl(64, 76%, 49%)

#d0dd1e Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 221, 30);
   }

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(64, 76%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(208, 221, 30, 10%) #d0dd1e1a  
rgb(208, 221, 30, 20%) #d0dd1e33  
rgb(208, 221, 30, 40%) #d0dd1e4C  
rgb(208, 221, 30, 60%) #d0dd1e99  
rgb(208, 221, 30, 80%) #d0dd1eCC  
rgb(208, 221, 30, 100%) #d0dd1eFF  

Saturated and desaturated colors of #d0dd1e

HSL Code Preview
hsl(64, 10%, 49%)  
hsl(64, 20%, 49%)  
hsl(64, 40%, 49%)  
hsl(64, 60%, 49%)  
hsl(64, 80%, 49%)  
hsl(64, 100%, 49%)  

#d0dd1e Color Usage In CSS

 body {
    color: #d0dd1e;
    }
 p {
    color: rgb(208, 221, 30);
    }
 header {
    border-bottom:1px solid #d0dd1e;
    }
Recent Random Colors