Random Color Generator

#232c30 Color

Color Codes
Hex Code #232c30
RGB Code rgb(35, 44, 48)
HSL Code hsl(198, 16%, 16%)

#232c30 Color Syntax

rgb()

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

 main {
    background-color: rgb(35, 44, 48);
   }

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(198, 16%, 16%);
  }

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 #232c30

RGB Code Hex Code Preview
rgb(35, 44, 48, 10%) #232c301a  
rgb(35, 44, 48, 20%) #232c3033  
rgb(35, 44, 48, 40%) #232c304C  
rgb(35, 44, 48, 60%) #232c3099  
rgb(35, 44, 48, 80%) #232c30CC  
rgb(35, 44, 48, 100%) #232c30FF  

Saturated and desaturated colors of #232c30

HSL Code Preview
hsl(198, 10%, 16%)  
hsl(198, 20%, 16%)  
hsl(198, 40%, 16%)  
hsl(198, 60%, 16%)  
hsl(198, 80%, 16%)  
hsl(198, 100%, 16%)  

#232c30 Color Usage In CSS

 body {
    color: #232c30;
    }
 p {
    color: rgb(35, 44, 48);
    }
 header {
    border-bottom:1px solid #232c30;
    }
Recent Random Colors