#277dce Color
Color Codes | |
---|---|
Hex Code | #277dce |
RGB Code | rgb(39, 125, 206) |
HSL Code | hsl(209, 68%, 48%) |
#277dce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(39, 125, 206); }
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, 68%, 48%); }
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 #277dce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(39, 125, 206, 10%) | #277dce1a | |
rgb(39, 125, 206, 20%) | #277dce33 | |
rgb(39, 125, 206, 40%) | #277dce4C | |
rgb(39, 125, 206, 60%) | #277dce99 | |
rgb(39, 125, 206, 80%) | #277dceCC | |
rgb(39, 125, 206, 100%) | #277dceFF |
Saturated and desaturated colors of #277dce
HSL Code | Preview |
---|---|
hsl(209, 10%, 48%) | |
hsl(209, 20%, 48%) | |
hsl(209, 40%, 48%) | |
hsl(209, 60%, 48%) | |
hsl(209, 80%, 48%) | |
hsl(209, 100%, 48%) |
#277dce Color Usage In CSS
body { color: #277dce; } p { color: rgb(39, 125, 206); } header { border-bottom:1px solid #277dce; }