#359ddf Color
Color Codes | |
---|---|
Hex Code | #359ddf |
RGB Code | rgb(53, 157, 223) |
HSL Code | hsl(203, 73%, 54%) |
#359ddf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 157, 223); }
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(203, 73%, 54%); }
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 #359ddf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 157, 223, 10%) | #359ddf1a | |
rgb(53, 157, 223, 20%) | #359ddf33 | |
rgb(53, 157, 223, 40%) | #359ddf4C | |
rgb(53, 157, 223, 60%) | #359ddf99 | |
rgb(53, 157, 223, 80%) | #359ddfCC | |
rgb(53, 157, 223, 100%) | #359ddfFF |
Saturated and desaturated colors of #359ddf
HSL Code | Preview |
---|---|
hsl(203, 10%, 54%) | |
hsl(203, 20%, 54%) | |
hsl(203, 40%, 54%) | |
hsl(203, 60%, 54%) | |
hsl(203, 80%, 54%) | |
hsl(203, 100%, 54%) |
#359ddf Color Usage In CSS
body { color: #359ddf; } p { color: rgb(53, 157, 223); } header { border-bottom:1px solid #359ddf; }