#26627c Color
Color Codes | |
---|---|
Hex Code | #26627c |
RGB Code | rgb(38, 98, 124) |
HSL Code | hsl(198, 53%, 32%) |
#26627c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(38, 98, 124); }
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(198, 53%, 32%); }
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 #26627c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(38, 98, 124, 10%) | #26627c1a | |
rgb(38, 98, 124, 20%) | #26627c33 | |
rgb(38, 98, 124, 40%) | #26627c4C | |
rgb(38, 98, 124, 60%) | #26627c99 | |
rgb(38, 98, 124, 80%) | #26627cCC | |
rgb(38, 98, 124, 100%) | #26627cFF |
Saturated and desaturated colors of #26627c
HSL Code | Preview |
---|---|
hsl(198, 10%, 32%) | |
hsl(198, 20%, 32%) | |
hsl(198, 40%, 32%) | |
hsl(198, 60%, 32%) | |
hsl(198, 80%, 32%) | |
hsl(198, 100%, 32%) |
#26627c Color Usage In CSS
body { color: #26627c; } p { color: rgb(38, 98, 124); } header { border-bottom:1px solid #26627c; }