#badff4 Color
Color Codes | |
---|---|
Hex Code | #badff4 |
RGB Code | rgb(186, 223, 244) |
HSL Code | hsl(202, 73%, 84%) |
#badff4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(186, 223, 244); }
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, 73%, 84%); }
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 #badff4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(186, 223, 244, 10%) | #badff41a | |
rgb(186, 223, 244, 20%) | #badff433 | |
rgb(186, 223, 244, 40%) | #badff44C | |
rgb(186, 223, 244, 60%) | #badff499 | |
rgb(186, 223, 244, 80%) | #badff4CC | |
rgb(186, 223, 244, 100%) | #badff4FF |
Saturated and desaturated colors of #badff4
HSL Code | Preview |
---|---|
hsl(202, 10%, 84%) | |
hsl(202, 20%, 84%) | |
hsl(202, 40%, 84%) | |
hsl(202, 60%, 84%) | |
hsl(202, 80%, 84%) | |
hsl(202, 100%, 84%) |
#badff4 Color Usage In CSS
body { color: #badff4; } p { color: rgb(186, 223, 244); } header { border-bottom:1px solid #badff4; }