#baaace Color
Color Codes | |
---|---|
Hex Code | #baaace |
RGB Code | rgb(186, 170, 206) |
HSL Code | hsl(267, 27%, 74%) |
#baaace Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(186, 170, 206); }
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(267, 27%, 74%); }
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 #baaace
RGB Code | Hex Code | Preview |
---|---|---|
rgb(186, 170, 206, 10%) | #baaace1a | |
rgb(186, 170, 206, 20%) | #baaace33 | |
rgb(186, 170, 206, 40%) | #baaace4C | |
rgb(186, 170, 206, 60%) | #baaace99 | |
rgb(186, 170, 206, 80%) | #baaaceCC | |
rgb(186, 170, 206, 100%) | #baaaceFF |
Saturated and desaturated colors of #baaace
HSL Code | Preview |
---|---|
hsl(267, 10%, 74%) | |
hsl(267, 20%, 74%) | |
hsl(267, 40%, 74%) | |
hsl(267, 60%, 74%) | |
hsl(267, 80%, 74%) | |
hsl(267, 100%, 74%) |
#baaace Color Usage In CSS
body { color: #baaace; } p { color: rgb(186, 170, 206); } header { border-bottom:1px solid #baaace; }