Random Color Generator

#286a7b Color

Color Codes
Hex Code #286a7b
RGB Code rgb(40, 106, 123)
HSL Code hsl(192, 51%, 32%)

#286a7b Color Syntax

rgb()

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

 main {
    background-color: rgb(40, 106, 123);
   }

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(192, 51%, 32%);
  }

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 #286a7b

RGB Code Hex Code Preview
rgb(40, 106, 123, 10%) #286a7b1a  
rgb(40, 106, 123, 20%) #286a7b33  
rgb(40, 106, 123, 40%) #286a7b4C  
rgb(40, 106, 123, 60%) #286a7b99  
rgb(40, 106, 123, 80%) #286a7bCC  
rgb(40, 106, 123, 100%) #286a7bFF  

Saturated and desaturated colors of #286a7b

HSL Code Preview
hsl(192, 10%, 32%)  
hsl(192, 20%, 32%)  
hsl(192, 40%, 32%)  
hsl(192, 60%, 32%)  
hsl(192, 80%, 32%)  
hsl(192, 100%, 32%)  

#286a7b Color Usage In CSS

 body {
    color: #286a7b;
    }
 p {
    color: rgb(40, 106, 123);
    }
 header {
    border-bottom:1px solid #286a7b;
    }
Recent Random Colors