Random Color Generator

#d5ebd4 Color

Color Codes
Hex Code #d5ebd4
RGB Code rgb(213, 235, 212)
HSL Code hsl(117, 37%, 88%)

#d5ebd4 Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 235, 212);
   }

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(117, 37%, 88%);
  }

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

RGB Code Hex Code Preview
rgb(213, 235, 212, 10%) #d5ebd41a  
rgb(213, 235, 212, 20%) #d5ebd433  
rgb(213, 235, 212, 40%) #d5ebd44C  
rgb(213, 235, 212, 60%) #d5ebd499  
rgb(213, 235, 212, 80%) #d5ebd4CC  
rgb(213, 235, 212, 100%) #d5ebd4FF  

Saturated and desaturated colors of #d5ebd4

HSL Code Preview
hsl(117, 10%, 88%)  
hsl(117, 20%, 88%)  
hsl(117, 40%, 88%)  
hsl(117, 60%, 88%)  
hsl(117, 80%, 88%)  
hsl(117, 100%, 88%)  

#d5ebd4 Color Usage In CSS

 body {
    color: #d5ebd4;
    }
 p {
    color: rgb(213, 235, 212);
    }
 header {
    border-bottom:1px solid #d5ebd4;
    }
Recent Random Colors