Random Color Generator

#abf4fa Color

Color Codes
Hex Code #abf4fa
RGB Code rgb(171, 244, 250)
HSL Code hsl(185, 89%, 83%)

#abf4fa Color Syntax

rgb()

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

 main {
    background-color: rgb(171, 244, 250);
   }

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(185, 89%, 83%);
  }

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 #abf4fa

RGB Code Hex Code Preview
rgb(171, 244, 250, 10%) #abf4fa1a  
rgb(171, 244, 250, 20%) #abf4fa33  
rgb(171, 244, 250, 40%) #abf4fa4C  
rgb(171, 244, 250, 60%) #abf4fa99  
rgb(171, 244, 250, 80%) #abf4faCC  
rgb(171, 244, 250, 100%) #abf4faFF  

Saturated and desaturated colors of #abf4fa

HSL Code Preview
hsl(185, 10%, 83%)  
hsl(185, 20%, 83%)  
hsl(185, 40%, 83%)  
hsl(185, 60%, 83%)  
hsl(185, 80%, 83%)  
hsl(185, 100%, 83%)  

#abf4fa Color Usage In CSS

 body {
    color: #abf4fa;
    }
 p {
    color: rgb(171, 244, 250);
    }
 header {
    border-bottom:1px solid #abf4fa;
    }
Recent Random Colors