Random Color Generator

#38aced Color

Color Codes
Hex Code #38aced
RGB Code rgb(56, 172, 237)
HSL Code hsl(202, 83%, 57%)

#38aced Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 172, 237);
   }

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(202, 83%, 57%);
  }

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 #38aced

RGB Code Hex Code Preview
rgb(56, 172, 237, 10%) #38aced1a  
rgb(56, 172, 237, 20%) #38aced33  
rgb(56, 172, 237, 40%) #38aced4C  
rgb(56, 172, 237, 60%) #38aced99  
rgb(56, 172, 237, 80%) #38acedCC  
rgb(56, 172, 237, 100%) #38acedFF  

Saturated and desaturated colors of #38aced

HSL Code Preview
hsl(202, 10%, 57%)  
hsl(202, 20%, 57%)  
hsl(202, 40%, 57%)  
hsl(202, 60%, 57%)  
hsl(202, 80%, 57%)  
hsl(202, 100%, 57%)  

#38aced Color Usage In CSS

 body {
    color: #38aced;
    }
 p {
    color: rgb(56, 172, 237);
    }
 header {
    border-bottom:1px solid #38aced;
    }
Recent Random Colors