Random Color Generator

#cba294 Color

Color Codes
Hex Code #cba294
RGB Code rgb(203, 162, 148)
HSL Code hsl(15, 35%, 69%)

#cba294 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 162, 148);
   }

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(15, 35%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(203, 162, 148, 10%) #cba2941a  
rgb(203, 162, 148, 20%) #cba29433  
rgb(203, 162, 148, 40%) #cba2944C  
rgb(203, 162, 148, 60%) #cba29499  
rgb(203, 162, 148, 80%) #cba294CC  
rgb(203, 162, 148, 100%) #cba294FF  

Saturated and desaturated colors of #cba294

HSL Code Preview
hsl(15, 10%, 69%)  
hsl(15, 20%, 69%)  
hsl(15, 40%, 69%)  
hsl(15, 60%, 69%)  
hsl(15, 80%, 69%)  
hsl(15, 100%, 69%)  

#cba294 Color Usage In CSS

 body {
    color: #cba294;
    }
 p {
    color: rgb(203, 162, 148);
    }
 header {
    border-bottom:1px solid #cba294;
    }
Recent Random Colors