#359ba8 Color
Color Codes | |
---|---|
Hex Code | #359ba8 |
RGB Code | rgb(53, 155, 168) |
HSL Code | hsl(187, 52%, 43%) |
#359ba8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 155, 168); }
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(187, 52%, 43%); }
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 #359ba8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 155, 168, 10%) | #359ba81a | |
rgb(53, 155, 168, 20%) | #359ba833 | |
rgb(53, 155, 168, 40%) | #359ba84C | |
rgb(53, 155, 168, 60%) | #359ba899 | |
rgb(53, 155, 168, 80%) | #359ba8CC | |
rgb(53, 155, 168, 100%) | #359ba8FF |
Saturated and desaturated colors of #359ba8
HSL Code | Preview |
---|---|
hsl(187, 10%, 43%) | |
hsl(187, 20%, 43%) | |
hsl(187, 40%, 43%) | |
hsl(187, 60%, 43%) | |
hsl(187, 80%, 43%) | |
hsl(187, 100%, 43%) |
#359ba8 Color Usage In CSS
body { color: #359ba8; } p { color: rgb(53, 155, 168); } header { border-bottom:1px solid #359ba8; }