#208693 Color
Color Codes | |
---|---|
Hex Code | #208693 |
RGB Code | rgb(32, 134, 147) |
HSL Code | hsl(187, 64%, 35%) |
#208693 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(32, 134, 147); }
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, 64%, 35%); }
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 #208693
RGB Code | Hex Code | Preview |
---|---|---|
rgb(32, 134, 147, 10%) | #2086931a | |
rgb(32, 134, 147, 20%) | #20869333 | |
rgb(32, 134, 147, 40%) | #2086934C | |
rgb(32, 134, 147, 60%) | #20869399 | |
rgb(32, 134, 147, 80%) | #208693CC | |
rgb(32, 134, 147, 100%) | #208693FF |
Saturated and desaturated colors of #208693
HSL Code | Preview |
---|---|
hsl(187, 10%, 35%) | |
hsl(187, 20%, 35%) | |
hsl(187, 40%, 35%) | |
hsl(187, 60%, 35%) | |
hsl(187, 80%, 35%) | |
hsl(187, 100%, 35%) |
#208693 Color Usage In CSS
body { color: #208693; } p { color: rgb(32, 134, 147); } header { border-bottom:1px solid #208693; }