#7dbdf0 Color
Color Codes | |
---|---|
Hex Code | #7dbdf0 |
RGB Code | rgb(125, 189, 240) |
HSL Code | hsl(207, 79%, 72%) |
#7dbdf0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(125, 189, 240); }
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(207, 79%, 72%); }
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 #7dbdf0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(125, 189, 240, 10%) | #7dbdf01a | |
rgb(125, 189, 240, 20%) | #7dbdf033 | |
rgb(125, 189, 240, 40%) | #7dbdf04C | |
rgb(125, 189, 240, 60%) | #7dbdf099 | |
rgb(125, 189, 240, 80%) | #7dbdf0CC | |
rgb(125, 189, 240, 100%) | #7dbdf0FF |
Saturated and desaturated colors of #7dbdf0
HSL Code | Preview |
---|---|
hsl(207, 10%, 72%) | |
hsl(207, 20%, 72%) | |
hsl(207, 40%, 72%) | |
hsl(207, 60%, 72%) | |
hsl(207, 80%, 72%) | |
hsl(207, 100%, 72%) |
#7dbdf0 Color Usage In CSS
body { color: #7dbdf0; } p { color: rgb(125, 189, 240); } header { border-bottom:1px solid #7dbdf0; }