Random Color Generator

#d06669 Color

Color Codes
Hex Code #d06669
RGB Code rgb(208, 102, 105)
HSL Code hsl(358, 53%, 61%)

#d06669 Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 102, 105);
   }

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(358, 53%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(208, 102, 105, 10%) #d066691a  
rgb(208, 102, 105, 20%) #d0666933  
rgb(208, 102, 105, 40%) #d066694C  
rgb(208, 102, 105, 60%) #d0666999  
rgb(208, 102, 105, 80%) #d06669CC  
rgb(208, 102, 105, 100%) #d06669FF  

Saturated and desaturated colors of #d06669

HSL Code Preview
hsl(358, 10%, 61%)  
hsl(358, 20%, 61%)  
hsl(358, 40%, 61%)  
hsl(358, 60%, 61%)  
hsl(358, 80%, 61%)  
hsl(358, 100%, 61%)  

#d06669 Color Usage In CSS

 body {
    color: #d06669;
    }
 p {
    color: rgb(208, 102, 105);
    }
 header {
    border-bottom:1px solid #d06669;
    }
Recent Random Colors