#237fd5 Color
Color Codes | |
---|---|
Hex Code | #237fd5 |
RGB Code | rgb(35, 127, 213) |
HSL Code | hsl(209, 72%, 49%) |
#237fd5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 127, 213); }
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(209, 72%, 49%); }
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 #237fd5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 127, 213, 10%) | #237fd51a | |
rgb(35, 127, 213, 20%) | #237fd533 | |
rgb(35, 127, 213, 40%) | #237fd54C | |
rgb(35, 127, 213, 60%) | #237fd599 | |
rgb(35, 127, 213, 80%) | #237fd5CC | |
rgb(35, 127, 213, 100%) | #237fd5FF |
Saturated and desaturated colors of #237fd5
HSL Code | Preview |
---|---|
hsl(209, 10%, 49%) | |
hsl(209, 20%, 49%) | |
hsl(209, 40%, 49%) | |
hsl(209, 60%, 49%) | |
hsl(209, 80%, 49%) | |
hsl(209, 100%, 49%) |
#237fd5 Color Usage In CSS
body { color: #237fd5; } p { color: rgb(35, 127, 213); } header { border-bottom:1px solid #237fd5; }