Random Color Generator

#6874cf Color

Color Codes
Hex Code #6874cf
RGB Code rgb(104, 116, 207)
HSL Code hsl(233, 52%, 61%)

#6874cf Color Syntax

rgb()

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

 main {
    background-color: rgb(104, 116, 207);
   }

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(233, 52%, 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 #6874cf

RGB Code Hex Code Preview
rgb(104, 116, 207, 10%) #6874cf1a  
rgb(104, 116, 207, 20%) #6874cf33  
rgb(104, 116, 207, 40%) #6874cf4C  
rgb(104, 116, 207, 60%) #6874cf99  
rgb(104, 116, 207, 80%) #6874cfCC  
rgb(104, 116, 207, 100%) #6874cfFF  

Saturated and desaturated colors of #6874cf

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

#6874cf Color Usage In CSS

 body {
    color: #6874cf;
    }
 p {
    color: rgb(104, 116, 207);
    }
 header {
    border-bottom:1px solid #6874cf;
    }
Recent Random Colors