Random Color Generator

#7069bd Color

Color Codes
Hex Code #7069bd
RGB Code rgb(112, 105, 189)
HSL Code hsl(245, 39%, 58%)

#7069bd Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 105, 189);
   }

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(245, 39%, 58%);
  }

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 #7069bd

RGB Code Hex Code Preview
rgb(112, 105, 189, 10%) #7069bd1a  
rgb(112, 105, 189, 20%) #7069bd33  
rgb(112, 105, 189, 40%) #7069bd4C  
rgb(112, 105, 189, 60%) #7069bd99  
rgb(112, 105, 189, 80%) #7069bdCC  
rgb(112, 105, 189, 100%) #7069bdFF  

Saturated and desaturated colors of #7069bd

HSL Code Preview
hsl(245, 10%, 58%)  
hsl(245, 20%, 58%)  
hsl(245, 40%, 58%)  
hsl(245, 60%, 58%)  
hsl(245, 80%, 58%)  
hsl(245, 100%, 58%)  

#7069bd Color Usage In CSS

 body {
    color: #7069bd;
    }
 p {
    color: rgb(112, 105, 189);
    }
 header {
    border-bottom:1px solid #7069bd;
    }
Recent Random Colors