Random Color Generator

#265cb5 Color

Color Codes
Hex Code #265cb5
RGB Code rgb(38, 92, 181)
HSL Code hsl(217, 65%, 43%)

#265cb5 Color Syntax

rgb()

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

 main {
    background-color: rgb(38, 92, 181);
   }

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(217, 65%, 43%);
  }

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 #265cb5

RGB Code Hex Code Preview
rgb(38, 92, 181, 10%) #265cb51a  
rgb(38, 92, 181, 20%) #265cb533  
rgb(38, 92, 181, 40%) #265cb54C  
rgb(38, 92, 181, 60%) #265cb599  
rgb(38, 92, 181, 80%) #265cb5CC  
rgb(38, 92, 181, 100%) #265cb5FF  

Saturated and desaturated colors of #265cb5

HSL Code Preview
hsl(217, 10%, 43%)  
hsl(217, 20%, 43%)  
hsl(217, 40%, 43%)  
hsl(217, 60%, 43%)  
hsl(217, 80%, 43%)  
hsl(217, 100%, 43%)  

#265cb5 Color Usage In CSS

 body {
    color: #265cb5;
    }
 p {
    color: rgb(38, 92, 181);
    }
 header {
    border-bottom:1px solid #265cb5;
    }
Recent Random Colors