#35baf1 Color
Color Codes | |
---|---|
Hex Code | #35baf1 |
RGB Code | rgb(53, 186, 241) |
HSL Code | hsl(198, 87%, 58%) |
#35baf1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 186, 241); }
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, 87%, 58%); }
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 #35baf1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 186, 241, 10%) | #35baf11a | |
rgb(53, 186, 241, 20%) | #35baf133 | |
rgb(53, 186, 241, 40%) | #35baf14C | |
rgb(53, 186, 241, 60%) | #35baf199 | |
rgb(53, 186, 241, 80%) | #35baf1CC | |
rgb(53, 186, 241, 100%) | #35baf1FF |
Saturated and desaturated colors of #35baf1
HSL Code | Preview |
---|---|
hsl(198, 10%, 58%) | |
hsl(198, 20%, 58%) | |
hsl(198, 40%, 58%) | |
hsl(198, 60%, 58%) | |
hsl(198, 80%, 58%) | |
hsl(198, 100%, 58%) |
#35baf1 Color Usage In CSS
body { color: #35baf1; } p { color: rgb(53, 186, 241); } header { border-bottom:1px solid #35baf1; }