Random Color Generator

#d5bec8 Color

Color Codes
Hex Code #d5bec8
RGB Code rgb(213, 190, 200)
HSL Code hsl(334, 21%, 79%)

#d5bec8 Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 190, 200);
   }

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(334, 21%, 79%);
  }

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

RGB Code Hex Code Preview
rgb(213, 190, 200, 10%) #d5bec81a  
rgb(213, 190, 200, 20%) #d5bec833  
rgb(213, 190, 200, 40%) #d5bec84C  
rgb(213, 190, 200, 60%) #d5bec899  
rgb(213, 190, 200, 80%) #d5bec8CC  
rgb(213, 190, 200, 100%) #d5bec8FF  

Saturated and desaturated colors of #d5bec8

HSL Code Preview
hsl(334, 10%, 79%)  
hsl(334, 20%, 79%)  
hsl(334, 40%, 79%)  
hsl(334, 60%, 79%)  
hsl(334, 80%, 79%)  
hsl(334, 100%, 79%)  

#d5bec8 Color Usage In CSS

 body {
    color: #d5bec8;
    }
 p {
    color: rgb(213, 190, 200);
    }
 header {
    border-bottom:1px solid #d5bec8;
    }
Recent Random Colors